mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-29 01:17:12 +02:00
18 lines
No EOL
366 B
C#
18 lines
No EOL
366 B
C#
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
|
|
}
|
|
} |