MoonWorks/src/Audio/SoundState.cs

10 lines
118 B
C#

namespace MoonWorks.Audio
{
public enum SoundState
{
Playing,
Paused,
Stopped
}
}