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