diff options
author | Justin Clarke Casey | 2008-12-23 17:54:13 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-23 17:54:13 +0000 |
commit | cce1b096dbd8aba46c405b7654d67d3ba96de33a (patch) | |
tree | ae8208af8343d8d82df1343038855e1d3c91eba0 /OpenSim/Framework | |
parent | * Add a method to allow friendship offers to a logged in client from an offli... (diff) | |
download | opensim-SC_OLD-cce1b096dbd8aba46c405b7654d67d3ba96de33a.zip opensim-SC_OLD-cce1b096dbd8aba46c405b7654d67d3ba96de33a.tar.gz opensim-SC_OLD-cce1b096dbd8aba46c405b7654d67d3ba96de33a.tar.bz2 opensim-SC_OLD-cce1b096dbd8aba46c405b7654d67d3ba96de33a.tar.xz |
* refactor: Replace part of SceneObjectPart with the identical sound playing code in the SoundModule
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index e3163d7..f9071a5 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -406,9 +406,9 @@ namespace OpenSim.Framework | |||
406 | public delegate void AcceptCallingCard(IClientAPI remoteClient, UUID transactionID, UUID folderID); | 406 | public delegate void AcceptCallingCard(IClientAPI remoteClient, UUID transactionID, UUID folderID); |
407 | 407 | ||
408 | public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID); | 408 | public delegate void DeclineCallingCard(IClientAPI remoteClient, UUID transactionID); |
409 | |||
410 | 409 | ||
411 | public delegate void SoundTrigger(UUID soundId,UUID ownerid,UUID objid, UUID parentid,float Gain, Vector3 Position,UInt64 Handle); | 410 | public delegate void SoundTrigger( |
411 | UUID soundId, UUID ownerid, UUID objid, UUID parentid, double Gain, Vector3 Position, UInt64 Handle); | ||
412 | 412 | ||
413 | public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); | 413 | public delegate void StartLure(byte lureType, string message, UUID targetID, IClientAPI client); |
414 | public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); | 414 | public delegate void TeleportLureRequest(UUID lureID, uint teleportFlags, IClientAPI client); |
@@ -723,8 +723,6 @@ namespace OpenSim.Framework | |||
723 | event TeleportLureRequest OnTeleportLureRequest; | 723 | event TeleportLureRequest OnTeleportLureRequest; |
724 | event NetworkStats OnNetworkStatsUpdate; | 724 | event NetworkStats OnNetworkStatsUpdate; |
725 | 725 | ||
726 | // void ActivateGesture(UUID assetId, UUID gestureId); | ||
727 | |||
728 | /// <summary> | 726 | /// <summary> |
729 | /// Tell this client what items it should be wearing now | 727 | /// Tell this client what items it should be wearing now |
730 | /// </summary> | 728 | /// </summary> |