blob: 8705e802eab30459a685921c60493a4c703b48f3 (
plain) (
tree)
|
|
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,
}
}
|