0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 10:21:41 +00:00
ryujinx-fork/Ryujinx.Audio/Common/AudioDeviceState.cs

18 lines
357 B
C#
Raw Normal View History

namespace Ryujinx.Audio.Common
{
/// <summary>
/// Audio device state.
/// </summary>
public enum AudioDeviceState : uint
{
/// <summary>
/// The audio device is started.
/// </summary>
Started,
/// <summary>
/// The audio device is stopped.
/// </summary>
Stopped
}
}