namespace Clover;
public static class SoundEx
{
[Rpc.Broadcast]
public static void Play( SoundEvent soundEvent, Vector3 position )
{
Sound.Play( soundEvent, position );
}
[Rpc.Broadcast]
public static void Play( SoundEvent soundEvent )
{
var s = Sound.Play( soundEvent );
s.ListenLocal = true;
}
}