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