aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 6d69c3d..7531517 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -409,6 +409,9 @@ namespace OpenSim.Framework
409 409
410 public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID); 410 public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID);
411 411
412
413 public delegate void SoundTrigger(UUID soundId,UUID ownerid,UUID objid, UUID parentid,float Gain, Vector3 Position,UInt64 Handle);
414
412 #endregion 415 #endregion
413 416
414 public struct DirPlacesReplyData 417 public struct DirPlacesReplyData
@@ -711,6 +714,7 @@ namespace OpenSim.Framework
711 event OfferCallingCard OnOfferCallingCard; 714 event OfferCallingCard OnOfferCallingCard;
712 event AcceptCallingCard OnAcceptCallingCard; 715 event AcceptCallingCard OnAcceptCallingCard;
713 event DeclineCallingCard OnDeclineCallingCard; 716 event DeclineCallingCard OnDeclineCallingCard;
717 event SoundTrigger OnSoundTrigger;
714 718
715 // void ActivateGesture(UUID assetId, UUID gestureId); 719 // void ActivateGesture(UUID assetId, UUID gestureId);
716 720