aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r--OpenSim/Framework/IClientAPI.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index a9c05f6..e3163d7 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -47,9 +47,6 @@ namespace OpenSim.Framework
47 47
48 public delegate void ImprovedInstantMessage(IClientAPI remoteclient, GridInstantMessage im); 48 public delegate void ImprovedInstantMessage(IClientAPI remoteclient, GridInstantMessage im);
49 49
50 // This shouldn't be cut down...
51 // especially if we're ever going to implement groups, presence, estate message dialogs...
52
53 public delegate void RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart, 50 public delegate void RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart,
54 UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection, 51 UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection,
55 bool RezSelected, bool RemoveItem, UUID fromTaskID); 52 bool RezSelected, bool RemoveItem, UUID fromTaskID);
@@ -63,6 +60,8 @@ namespace OpenSim.Framework
63 float height, float seconds, byte size, byte action, float north, float west, float south, float east, 60 float height, float seconds, byte size, byte action, float north, float west, float south, float east,
64 UUID agentId); 61 UUID agentId);
65 62
63 public delegate void NetworkStats(int inPackets, int outPackets, int unAckedBytes);
64
66 public delegate void SetAppearance(byte[] texture, List<byte> visualParamList); 65 public delegate void SetAppearance(byte[] texture, List<byte> visualParamList);
67 66
68 public delegate void StartAnim(IClientAPI remoteClient, UUID animID); 67 public delegate void StartAnim(IClientAPI remoteClient, UUID animID);
@@ -722,6 +721,7 @@ namespace OpenSim.Framework
722 721
723 event StartLure OnStartLure; 722 event StartLure OnStartLure;
724 event TeleportLureRequest OnTeleportLureRequest; 723 event TeleportLureRequest OnTeleportLureRequest;
724 event NetworkStats OnNetworkStatsUpdate;
725 725
726 // void ActivateGesture(UUID assetId, UUID gestureId); 726 // void ActivateGesture(UUID assetId, UUID gestureId);
727 727