aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/EntityBase.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-14 21:09:41 +0000
committerJustin Clarke Casey2008-05-14 21:09:41 +0000
commit587f6ab6459d12a9c6fe02dcf272d954b545d099 (patch)
treebc67cec592a8ceed816761aa2fb3990f3d021e8d /OpenSim/Region/Environment/Scenes/EntityBase.cs
parent*SVN Executable on HttpServer.dll (diff)
downloadopensim-SC_OLD-587f6ab6459d12a9c6fe02dcf272d954b545d099.zip
opensim-SC_OLD-587f6ab6459d12a9c6fe02dcf272d954b545d099.tar.gz
opensim-SC_OLD-587f6ab6459d12a9c6fe02dcf272d954b545d099.tar.bz2
opensim-SC_OLD-587f6ab6459d12a9c6fe02dcf272d954b545d099.tar.xz
* Refactor: Remove SceneObjectGroup.GetScenePresences() in favour of a direct call to Scene
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/EntityBase.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/EntityBase.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs
index 11bafb7..18a2851 100644
--- a/OpenSim/Region/Environment/Scenes/EntityBase.cs
+++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs
@@ -35,13 +35,15 @@ namespace OpenSim.Region.Environment.Scenes
35{ 35{
36 [Serializable] 36 [Serializable]
37 public abstract class EntityBase : ISerializable 37 public abstract class EntityBase : ISerializable
38 { 38 {
39 protected Scene m_scene; 39 /// <summary>
40 40 /// The scene to which this entity belongs
41 /// </summary>
41 public Scene Scene 42 public Scene Scene
42 { 43 {
43 get { return m_scene; } 44 get { return m_scene; }
44 } 45 }
46 protected Scene m_scene;
45 47
46 protected LLUUID m_uuid; 48 protected LLUUID m_uuid;
47 49