mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-22 21:25:48 +00:00
Move solution and projects to src
This commit is contained in:
28
src/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs
Normal file
28
src/Ryujinx.Audio/Renderer/Server/Effect/UsageState.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace Ryujinx.Audio.Renderer.Server.Effect
|
||||
{
|
||||
/// <summary>
|
||||
/// The usage state of an effect.
|
||||
/// </summary>
|
||||
public enum UsageState : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// The effect is in an invalid state.
|
||||
/// </summary>
|
||||
Invalid,
|
||||
|
||||
/// <summary>
|
||||
/// The effect is new.
|
||||
/// </summary>
|
||||
New,
|
||||
|
||||
/// <summary>
|
||||
/// The effect is enabled.
|
||||
/// </summary>
|
||||
Enabled,
|
||||
|
||||
/// <summary>
|
||||
/// The effect is disabled.
|
||||
/// </summary>
|
||||
Disabled
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user