using System; using System.Collections.Generic; using System.Text; namespace CUETools.Codecs.CoreAudio { /// /// Playback State /// public enum PlaybackState { /// /// Stopped /// Stopped, /// /// Playing /// Playing, /// /// Paused /// Paused } }