diff options
Diffstat (limited to 'OpenSim/Framework/IClientAPI.cs')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 062659c..10a091a 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -152,6 +152,8 @@ namespace OpenSim.Framework | |||
152 | 152 | ||
153 | public delegate void AgentSit(IClientAPI remoteClient, UUID agentID); | 153 | public delegate void AgentSit(IClientAPI remoteClient, UUID agentID); |
154 | 154 | ||
155 | public delegate void LandUndo(IClientAPI remoteClient); | ||
156 | |||
155 | public delegate void AvatarPickerRequest(IClientAPI remoteClient, UUID agentdata, UUID queryID, string UserQuery); | 157 | public delegate void AvatarPickerRequest(IClientAPI remoteClient, UUID agentdata, UUID queryID, string UserQuery); |
156 | 158 | ||
157 | public delegate void GrabObject( | 159 | public delegate void GrabObject( |
@@ -419,9 +421,9 @@ namespace OpenSim.Framework | |||
419 | public delegate void AcceptCallingCard(IClientAPI remoteClient, UUID transactionID, UUID folderID); | 421 | public delegate void AcceptCallingCard(IClientAPI remoteClient, UUID transactionID, UUID folderID); |
420 | 422 | ||
421 | public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID); | 423 | public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID); |
422 | 424 | ||
423 | public delegate void SoundTrigger( | 425 | public delegate void SoundTrigger( |
424 | UUID soundId, UUID ownerid, UUID objid, UUID parentid, double Gain, Vector3 Position, UInt64 Handle); | 426 | UUID soundId, UUID ownerid, UUID objid, UUID parentid, double Gain, Vector3 Position, UInt64 Handle, float radius); |
425 | 427 | ||
426 | public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); | 428 | public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); |
427 | public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); | 429 | public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); |
@@ -993,6 +995,8 @@ namespace OpenSim.Framework | |||
993 | event ScriptAnswer OnScriptAnswer; | 995 | event ScriptAnswer OnScriptAnswer; |
994 | 996 | ||
995 | event AgentSit OnUndo; | 997 | event AgentSit OnUndo; |
998 | event AgentSit OnRedo; | ||
999 | event LandUndo OnLandUndo; | ||
996 | 1000 | ||
997 | event ForceReleaseControls OnForceReleaseControls; | 1001 | event ForceReleaseControls OnForceReleaseControls; |
998 | event GodLandStatRequest OnLandStatRequest; | 1002 | event GodLandStatRequest OnLandStatRequest; |