aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
blob: a83d16afbab966f0f4623c1324fa2b3cff460532 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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,
    }
}