1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 10:06:46 -06:00

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