aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
blob: ef3887c71085a31620e8c2be91a833b033554e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using OpenSim.Region.Framework.Scenes;

namespace OpenSim.Region.Framework.Interfaces
{
    public interface ISceneViewer
    {
        void Reset();
        void Close();
        int MaxPrimsPerFrame { get; set; }
        void QueuePartForUpdate(SceneObjectPart part);
        void SendPrimUpdates();
    }
}