diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index bb4fd15..b9ad348 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -234,6 +234,11 @@ namespace OpenSim.Framework | |||
234 | uint EveryoneMask, uint GroupMask, uint NextOwnerMask, uint ItemFlags, | 234 | uint EveryoneMask, uint GroupMask, uint NextOwnerMask, uint ItemFlags, |
235 | bool RezSelected, bool RemoveItem, LLUUID fromTaskID ); | 235 | bool RezSelected, bool RemoveItem, LLUUID fromTaskID ); |
236 | 236 | ||
237 | public delegate void RezSingleAttachmentFromInv(IClientAPI remoteClient, LLUUID itemID, uint AttachmentPt, | ||
238 | uint ItemFlags, uint NextOwnerMask); | ||
239 | |||
240 | public delegate void ObjectAttach(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, LLQuaternion rot); | ||
241 | |||
237 | public delegate void ModifyTerrain( | 242 | public delegate void ModifyTerrain( |
238 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, | 243 | float height, float seconds, byte size, byte action, float north, float west, float south, float east, |
239 | IClientAPI remoteClient); | 244 | IClientAPI remoteClient); |
@@ -417,6 +422,8 @@ namespace OpenSim.Framework | |||
417 | event ModifyTerrain OnModifyTerrain; | 422 | event ModifyTerrain OnModifyTerrain; |
418 | event SetAppearance OnSetAppearance; | 423 | event SetAppearance OnSetAppearance; |
419 | event AvatarNowWearing OnAvatarNowWearing; | 424 | event AvatarNowWearing OnAvatarNowWearing; |
425 | event RezSingleAttachmentFromInv OnRezSingleAttachmentFromInv; | ||
426 | event ObjectAttach OnObjectAttach; | ||
420 | event StartAnim OnStartAnim; | 427 | event StartAnim OnStartAnim; |
421 | event StopAnim OnStopAnim; | 428 | event StopAnim OnStopAnim; |
422 | event LinkObjects OnLinkObjects; | 429 | event LinkObjects OnLinkObjects; |