namespace Ryujinx.Audio.Renderer.Common
{
///
/// Common play state.
///
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
}
}