aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Audio/Renderer/Common/PlayState.cs')
-rw-r--r--src/Ryujinx.Audio/Renderer/Common/PlayState.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Ryujinx.Audio/Renderer/Common/PlayState.cs b/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
new file mode 100644
index 00000000..4a6929e0
--- /dev/null
+++ b/src/Ryujinx.Audio/Renderer/Common/PlayState.cs
@@ -0,0 +1,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
+ }
+} \ No newline at end of file