mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 22:45:43 +08:00
13 lines
274 B
C#
13 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenMetaverse;
|
|
|
|
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule.Object
|
|
{
|
|
public interface IObjectSound
|
|
{
|
|
void Play(UUID soundAsset, double volume);
|
|
}
|
|
}
|