12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using OpenMetaverse;
- namespace OpenSim.Region.Framework.Interfaces
- {
- public interface ISoundModule
- {
- void PlayAttachedSound(UUID soundID, UUID ownerID, UUID objectID, double gain, Vector3 position, byte flags);
-
- void TriggerSound(
- UUID soundId, UUID ownerID, UUID objectID, UUID parentID, double gain, Vector3 position, UInt64 handle);
- }
- }
|