PlayState.cs 493 B

1234567891011121314151617181920212223
  1. namespace Ryujinx.Audio.Renderer.Common
  2. {
  3. /// <summary>
  4. /// Common play state.
  5. /// </summary>
  6. public enum PlayState : byte
  7. {
  8. /// <summary>
  9. /// The user request the voice to be started.
  10. /// </summary>
  11. Start,
  12. /// <summary>
  13. /// The user request the voice to be stopped.
  14. /// </summary>
  15. Stop,
  16. /// <summary>
  17. /// The user request the voice to be paused.
  18. /// </summary>
  19. Pause
  20. }
  21. }