Ryujinx/Ryujinx.Audio/Renderer/Parameter/EffectState.cs

18 lines
366 B
C#
Raw Normal View History

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
}
}