aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index ed223f4..ab5dbb6 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -175,6 +175,8 @@ namespace OpenSim.Framework
175 public delegate void StartAnim(IClientAPI remoteClient, LLUUID animID, int seq); 175 public delegate void StartAnim(IClientAPI remoteClient, LLUUID animID, int seq);
176 176
177 public delegate void LinkObjects(uint parent, List<uint> children); 177 public delegate void LinkObjects(uint parent, List<uint> children);
178
179 public delegate void DelinkObjects(List<uint> primIds);
178 180
179 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY); 181 public delegate void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY);
180 182
@@ -290,6 +292,7 @@ namespace OpenSim.Framework
290 event SetAppearance OnSetAppearance; 292 event SetAppearance OnSetAppearance;
291 event StartAnim OnStartAnim; 293 event StartAnim OnStartAnim;
292 event LinkObjects OnLinkObjects; 294 event LinkObjects OnLinkObjects;
295 event DelinkObjects OnDelinkObjects;
293 event RequestMapBlocks OnRequestMapBlocks; 296 event RequestMapBlocks OnRequestMapBlocks;
294 event TeleportLocationRequest OnTeleportLocationRequest; 297 event TeleportLocationRequest OnTeleportLocationRequest;
295 event DisconnectUser OnDisconnectUser; 298 event DisconnectUser OnDisconnectUser;