ryujinx/src/Ryujinx.Audio/Renderer/Parameter/EffectState.cs
2023-04-27 23:51:14 +02:00

18 lines
No EOL
366 B
C#

namespace Ryujinx.Audio.Renderer.Parameter
{
/// <summary>
/// The state of an effect.
/// </summary>
public enum EffectState : byte
{
/// <summary>
/// The effect is enabled.
/// </summary>
Enabled = 3,
/// <summary>
/// The effect is disabled.
/// </summary>
Disabled = 4
}
}