diff options
Diffstat (limited to 'Client/Assembly-CSharp/ISoundPlayer.cs')
-rw-r--r-- | Client/Assembly-CSharp/ISoundPlayer.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/ISoundPlayer.cs b/Client/Assembly-CSharp/ISoundPlayer.cs new file mode 100644 index 0000000..0b5d3ca --- /dev/null +++ b/Client/Assembly-CSharp/ISoundPlayer.cs @@ -0,0 +1,11 @@ +using System; +using UnityEngine; + +public interface ISoundPlayer +{ + string Name { get; set; } + + AudioSource Player { get; set; } + + void Update(float dt); +} |