aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneBase.cs
diff options
context:
space:
mode:
authorlbsa712007-07-09 21:03:36 +0000
committerlbsa712007-07-09 21:03:36 +0000
commit08a1fa3f96eee5e067475da453a3770ff15780f9 (patch)
tree1ed047e466e20dcf327f8c890efbf1779ead6ad6 /OpenSim/Region/Environment/Scenes/SceneBase.cs
parent* Ignored all those autogenned build files (diff)
downloadopensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.zip
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.gz
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.bz2
opensim-SC_OLD-08a1fa3f96eee5e067475da453a3770ff15780f9.tar.xz
* Introduced ClientManager for great justice.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneBase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneBase.cs b/OpenSim/Region/Environment/Scenes/SceneBase.cs
index 4036743..44121b4 100644
--- a/OpenSim/Region/Environment/Scenes/SceneBase.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneBase.cs
@@ -34,13 +34,14 @@ using OpenSim.Framework.Interfaces;
34using OpenSim.Framework.Types; 34using OpenSim.Framework.Types;
35using OpenSim.Region.Caches; 35using OpenSim.Region.Caches;
36using OpenSim.Region.Terrain; 36using OpenSim.Region.Terrain;
37using OpenSim.Framework;
37 38
38namespace OpenSim.Region.Environment.Scenes 39namespace OpenSim.Region.Environment.Scenes
39{ 40{
40 public abstract class SceneBase : IWorld 41 public abstract class SceneBase : IWorld
41 { 42 {
42 public Dictionary<LLUUID, EntityBase> Entities; 43 public Dictionary<LLUUID, EntityBase> Entities;
43 protected Dictionary<uint, IClientAPI> m_clientThreads; 44 protected ClientManager m_clientThreads;
44 protected ulong m_regionHandle; 45 protected ulong m_regionHandle;
45 protected string m_regionName; 46 protected string m_regionName;
46 protected RegionInfo m_regInfo; 47 protected RegionInfo m_regInfo;