FineAudio/src/SoundState.cs

10 lines
88 B
C#

namespace FineAudio
{
public enum SoundState
{
Playing,
Paused,
Stopped
}
}