Ryujinx/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
2023-04-27 23:51:14 +02:00

23 lines
No EOL
493 B
C#

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