diff options
author | MW | 2007-06-20 17:32:21 +0000 |
---|---|---|
committer | MW | 2007-06-20 17:32:21 +0000 |
commit | 3e484d1aaf6d2d893f258e7372003de9bf5e8bdb (patch) | |
tree | 78eba8a9c1e77748d73d77e9f366021235a738b8 /OpenSim/OpenSim.Region/Scenes/SceneBase.cs | |
parent | * and done the same for OGS.. (diff) | |
download | opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.zip opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.gz opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.bz2 opensim-SC-3e484d1aaf6d2d893f258e7372003de9bf5e8bdb.tar.xz |
Renamed Avatar to ScenePresence to avoid clash with libsl Avatar class.
Added ThirdPartyLicenses folder containing the licenses for the various third party libraries we use.
Plus some other small changes.
Diffstat (limited to 'OpenSim/OpenSim.Region/Scenes/SceneBase.cs')
-rw-r--r-- | OpenSim/OpenSim.Region/Scenes/SceneBase.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.Region/Scenes/SceneBase.cs b/OpenSim/OpenSim.Region/Scenes/SceneBase.cs index 05c2aba..e650127 100644 --- a/OpenSim/OpenSim.Region/Scenes/SceneBase.cs +++ b/OpenSim/OpenSim.Region/Scenes/SceneBase.cs | |||
@@ -43,7 +43,7 @@ using OpenSim.Caches; | |||
43 | 43 | ||
44 | namespace OpenSim.Region.Scenes | 44 | namespace OpenSim.Region.Scenes |
45 | { | 45 | { |
46 | public abstract class SceneBase : IWorld | 46 | public abstract class SceneBase : IWorld |
47 | { | 47 | { |
48 | public Dictionary<libsecondlife.LLUUID, Entity> Entities; | 48 | public Dictionary<libsecondlife.LLUUID, Entity> Entities; |
49 | protected Dictionary<uint, IClientAPI> m_clientThreads; | 49 | protected Dictionary<uint, IClientAPI> m_clientThreads; |
@@ -98,13 +98,13 @@ namespace OpenSim.Region.Scenes | |||
98 | /// <param name="remoteClient"></param> | 98 | /// <param name="remoteClient"></param> |
99 | /// <param name="agentID"></param> | 99 | /// <param name="agentID"></param> |
100 | /// <param name="child"></param> | 100 | /// <param name="child"></param> |
101 | public abstract void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child); | 101 | public abstract void AddNewClient(IClientAPI remoteClient, LLUUID agentID, bool child); |
102 | 102 | ||
103 | /// <summary> | 103 | /// <summary> |
104 | /// | 104 | /// |
105 | /// </summary> | 105 | /// </summary> |
106 | /// <param name="agentID"></param> | 106 | /// <param name="agentID"></param> |
107 | public abstract void RemoveAvatar(LLUUID agentID); | 107 | public abstract void RemoveClient(LLUUID agentID); |
108 | 108 | ||
109 | #endregion | 109 | #endregion |
110 | 110 | ||