aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
diff options
context:
space:
mode:
authorJeff Ames2009-06-27 04:31:49 +0000
committerJeff Ames2009-06-27 04:31:49 +0000
commit2d173d7556a95ebf28380095cb2e9bebe99f49cd (patch)
tree9576f36afd89c1befd69a1878c48f21824c9c035 /OpenSim/Region/Framework/Interfaces/ISceneViewer.cs
parentFixed null bug, which was making unit tests fail (diff)
downloadopensim-SC_OLD-2d173d7556a95ebf28380095cb2e9bebe99f49cd.zip
opensim-SC_OLD-2d173d7556a95ebf28380095cb2e9bebe99f49cd.tar.gz
opensim-SC_OLD-2d173d7556a95ebf28380095cb2e9bebe99f49cd.tar.bz2
opensim-SC_OLD-2d173d7556a95ebf28380095cb2e9bebe99f49cd.tar.xz
Update svn properties.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ISceneViewer.cs')
-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}