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