diff options
Diffstat (limited to '')
-rw-r--r-- | Common/OpenSim.Framework/Interfaces/IClientAPI.cs | 7 | ||||
-rw-r--r-- | Common/OpenSim.Framework/Interfaces/IWorld.cs | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs index add6c00..8ba1571 100644 --- a/Common/OpenSim.Framework/Interfaces/IClientAPI.cs +++ b/Common/OpenSim.Framework/Interfaces/IClientAPI.cs | |||
@@ -18,6 +18,8 @@ namespace OpenSim.Framework.Interfaces | |||
18 | public delegate void GenericCall2(); | 18 | public delegate void GenericCall2(); |
19 | public delegate void GenericCall3(Packet packet); // really don't want to be passing packets in these events, so this is very temporary. | 19 | public delegate void GenericCall3(Packet packet); // really don't want to be passing packets in these events, so this is very temporary. |
20 | public delegate void GenericCall4(Packet packet, IClientAPI remoteClient); | 20 | public delegate void GenericCall4(Packet packet, IClientAPI remoteClient); |
21 | public delegate void GenericCall5(IClientAPI remoteClient, bool status); | ||
22 | public delegate void GenericCall6(LLUUID uid); | ||
21 | public delegate void UpdateShape(uint localID, ObjectShapePacket.ObjectDataBlock shapeBlock); | 23 | public delegate void UpdateShape(uint localID, ObjectShapePacket.ObjectDataBlock shapeBlock); |
22 | public delegate void ObjectSelect(uint localID, IClientAPI remoteClient); | 24 | public delegate void ObjectSelect(uint localID, IClientAPI remoteClient); |
23 | public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); | 25 | public delegate void UpdatePrimFlags(uint localID, Packet packet, IClientAPI remoteClient); |
@@ -25,6 +27,7 @@ namespace OpenSim.Framework.Interfaces | |||
25 | public delegate void UpdatePrimVector(uint localID, LLVector3 pos, IClientAPI remoteClient); | 27 | public delegate void UpdatePrimVector(uint localID, LLVector3 pos, IClientAPI remoteClient); |
26 | public delegate void UpdatePrimRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); | 28 | public delegate void UpdatePrimRotation(uint localID, LLQuaternion rot, IClientAPI remoteClient); |
27 | public delegate void StatusChange(bool status); | 29 | public delegate void StatusChange(bool status); |
30 | public delegate void NewAvatar(IClientAPI remoteClient, LLUUID agentID, bool status); | ||
28 | 31 | ||
29 | public interface IClientAPI | 32 | public interface IClientAPI |
30 | { | 33 | { |
@@ -50,6 +53,8 @@ namespace OpenSim.Framework.Interfaces | |||
50 | event UpdatePrimVector OnUpdatePrimScale; | 53 | event UpdatePrimVector OnUpdatePrimScale; |
51 | event StatusChange OnChildAgentStatus; | 54 | event StatusChange OnChildAgentStatus; |
52 | event GenericCall2 OnStopMovement; | 55 | event GenericCall2 OnStopMovement; |
56 | event NewAvatar OnNewAvatar; | ||
57 | event GenericCall6 OnRemoveAvatar; | ||
53 | 58 | ||
54 | LLVector3 StartPos | 59 | LLVector3 StartPos |
55 | { | 60 | { |
@@ -63,7 +68,7 @@ namespace OpenSim.Framework.Interfaces | |||
63 | } | 68 | } |
64 | 69 | ||
65 | void OutPacket(Packet newPack); | 70 | void OutPacket(Packet newPack); |
66 | void SendAppearance(AvatarWearable[] wearables); | 71 | void SendWearables(AvatarWearable[] wearables); |
67 | void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); | 72 | void SendChatMessage(byte[] message, byte type, LLVector3 fromPos, string fromName, LLUUID fromAgentID); |
68 | } | 73 | } |
69 | } | 74 | } |
diff --git a/Common/OpenSim.Framework/Interfaces/IWorld.cs b/Common/OpenSim.Framework/Interfaces/IWorld.cs index 433e540..ab2d63d 100644 --- a/Common/OpenSim.Framework/Interfaces/IWorld.cs +++ b/Common/OpenSim.Framework/Interfaces/IWorld.cs | |||
@@ -8,8 +8,8 @@ namespace OpenSim.Framework.Interfaces | |||
8 | { | 8 | { |
9 | public interface IWorld | 9 | public interface IWorld |
10 | { | 10 | { |
11 | bool AddNewAvatar(IClientAPI remoteClient, bool childAgent); | 11 | void AddNewAvatar(IClientAPI remoteClient, LLUUID agentID, bool child); |
12 | bool RemoveAvatar(LLUUID agentID); | 12 | void RemoveAvatar(LLUUID agentID); |
13 | RegionInfo GetRegionInfo(); | 13 | RegionInfo GetRegionInfo(); |
14 | } | 14 | } |
15 | } | 15 | } |