1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-17 21:30:06 -06:00
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
}
}