transposing stop sound into sound module

This commit is contained in:
SignpostMarv
2012-10-05 14:55:00 +01:00
committed by Justin Clark-Casey (justincc)
parent 206a694c6b
commit 8763a637b5
3 changed files with 56 additions and 37 deletions

View File

@@ -68,5 +68,11 @@ namespace OpenSim.Region.Framework.Interfaces
void TriggerSound(
UUID soundId, UUID ownerID, UUID objectID, UUID parentID,
double gain, Vector3 position, UInt64 handle, float radius);
/// <summary>
/// Stop sounds eminating from an object.
/// </summary>
/// <param name="objectID">Sound source ID</param>
void StopSound(UUID objectID);
}
}