mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 22:40:47 -07:00
10 lines
166 B
C#
10 lines
166 B
C#
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|
{
|
|
internal enum PlayState : byte
|
|
{
|
|
Playing = 0,
|
|
Stopped = 1,
|
|
Paused = 2
|
|
}
|
|
}
|