diff options
author | SignpostMarv | 2012-10-16 12:40:21 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-29 23:39:00 +0000 |
commit | c5af16aef82e2bdf2f4d877a231180e00a8893a6 (patch) | |
tree | 3be95d8dea8bfcc764eb0cd374ecd88aed2a7ea6 /OpenSim/Region/Framework/Interfaces | |
parent | moving SendSound from SceneObjectPart to ISoundModule (diff) | |
download | opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.zip opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.gz opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.bz2 opensim-SC_OLD-c5af16aef82e2bdf2f4d877a231180e00a8893a6.tar.xz |
shuffling code around so that the interface for ISoundModule.SendSound() specifies a UUID rather than a string
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/ISoundModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISoundModule.cs b/OpenSim/Region/Framework/Interfaces/ISoundModule.cs index c5edcb0..5d1bb63 100644 --- a/OpenSim/Region/Framework/Interfaces/ISoundModule.cs +++ b/OpenSim/Region/Framework/Interfaces/ISoundModule.cs | |||
@@ -108,7 +108,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
108 | /// <param name="radius"></param> | 108 | /// <param name="radius"></param> |
109 | /// <param name="useMaster"></param> | 109 | /// <param name="useMaster"></param> |
110 | /// <param name="isMaster"></param> | 110 | /// <param name="isMaster"></param> |
111 | void SendSound(UUID objectID, string sound, double volume, | 111 | void SendSound(UUID objectID, UUID sound, double volume, |
112 | bool triggered, byte flags, float radius, bool useMaster, | 112 | bool triggered, byte flags, float radius, bool useMaster, |
113 | bool isMaster); | 113 | bool isMaster); |
114 | } | 114 | } |