namespace Ryujinx.Audio
{
/// <summary>
/// The playback state of a track
/// </summary>
public enum PlaybackState
/// The track is currently playing
Playing = 0,
/// The track is currently stopped
Stopped = 1
}