From 3e484d1aaf6d2d893f258e7372003de9bf5e8bdb Mon Sep 17 00:00:00 2001 From: MW Date: Wed, 20 Jun 2007 17:32:21 +0000 Subject: 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. --- Common/OpenSim.Framework/Interfaces/IClientAPI.cs | 2 +- Common/OpenSim.Framework/Interfaces/IWorld.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'Common/OpenSim.Framework/Interfaces') diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs index afeae1f..3b965bf 100644 --- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs +++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs @@ -144,7 +144,7 @@ namespace OpenSim.Framework.Interfaces void SendTeleportCancel(); void SendTeleportLocationStart(); - void SendAvatarData(RegionInfo regionInfo, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos); + void SendAvatarData(ulong regionHandle, string firstName, string lastName, LLUUID avatarID, uint avatarLocalID, LLVector3 Pos); void SendAvatarTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, LLVector3 position, LLVector3 velocity); void AttachObject(uint localID, LLQuaternion rotation, byte attachPoint); diff --git a/Common/OpenSim.Framework/Interfaces/IWorld.cs b/Common/OpenSim.Framework/Interfaces/IWorld.cs index 08077bd..4857417 100644 --- a/Common/OpenSim.Framework/Interfaces/IWorld.cs +++ b/Common/OpenSim.Framework/Interfaces/IWorld.cs @@ -35,8 +35,8 @@ namespace OpenSim.Framework.Interfaces { public interface IWorld { - void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child); - void RemoveAvatar(LLUUID agentID); + void AddNewClient(IClientAPI remoteClient, LLUUID agentID, bool child); + void RemoveClient(LLUUID agentID); RegionInfo RegionInfo { get; } object SyncRoot { get; } -- cgit v1.1