8 lines
90 B
C#
8 lines
90 B
C#
|
namespace Nerfed.Runtime.Audio;
|
|||
|
|
|||
|
public enum SoundState
|
|||
|
{
|
|||
|
Playing,
|
|||
|
Paused,
|
|||
|
Stopped
|
|||
|
}
|