PlaybackState.cs 362 B

1234567891011121314151617
  1. namespace Ryujinx.Audio
  2. {
  3. /// <summary>
  4. /// The playback state of a track
  5. /// </summary>
  6. public enum PlaybackState
  7. {
  8. /// <summary>
  9. /// The track is currently playing
  10. /// </summary>
  11. Playing = 0,
  12. /// <summary>
  13. /// The track is currently stopped
  14. /// </summary>
  15. Stopped = 1
  16. }
  17. }