diff options
author | Sean Dague | 2007-11-13 19:57:11 +0000 |
---|---|---|
committer | Sean Dague | 2007-11-13 19:57:11 +0000 |
commit | eb41ec00c94170305fd764d5e0ad5bee04018551 (patch) | |
tree | a46c4acb189887b44f63f4e2bd0d6c808b58f0be /OpenSim/Framework | |
parent | Added "remove-region <region name>" console command that "should" remove the ... (diff) | |
download | opensim-SC_OLD-eb41ec00c94170305fd764d5e0ad5bee04018551.zip opensim-SC_OLD-eb41ec00c94170305fd764d5e0ad5bee04018551.tar.gz opensim-SC_OLD-eb41ec00c94170305fd764d5e0ad5bee04018551.tar.bz2 opensim-SC_OLD-eb41ec00c94170305fd764d5e0ad5bee04018551.tar.xz |
first pass on unlinking of objects. From Jay Clarke (IBM)
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 3 |
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; |