namespace Ryujinx.Audio.Renderer.Common
{
/// <summary>
/// Common play state.
/// </summary>
public enum PlayState : byte
/// The user request the voice to be started.
Start,
/// The user request the voice to be stopped.
Stop,
/// The user request the voice to be paused.
Pause
}