aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ISceneViewer.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs b/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
index 1b2cdee..ef3887c 100644
--- a/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
+++ b/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
@@ -1,14 +1,14 @@
1using System; 1using System;
2using OpenSim.Region.Framework.Scenes; 2using OpenSim.Region.Framework.Scenes;
3 3
4namespace OpenSim.Region.Framework.Interfaces 4namespace OpenSim.Region.Framework.Interfaces
5{ 5{
6 public interface ISceneViewer 6 public interface ISceneViewer
7 { 7 {
8 void Reset(); 8 void Reset();
9 void Close(); 9 void Close();
10 int MaxPrimsPerFrame { get; set; } 10 int MaxPrimsPerFrame { get; set; }
11 void QueuePartForUpdate(SceneObjectPart part); 11 void QueuePartForUpdate(SceneObjectPart part);
12 void SendPrimUpdates(); 12 void SendPrimUpdates();
13 } 13 }
14} 14}