mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 04:10:47 -07:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Ui.Common/Configuration/AudioBackend.cs
Normal file
14
src/Ryujinx.Ui.Common/Configuration/AudioBackend.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Ryujinx.Common.Utilities;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Ryujinx.Ui.Common.Configuration
|
||||
{
|
||||
[JsonConverter(typeof(TypedStringEnumConverter<AudioBackend>))]
|
||||
public enum AudioBackend
|
||||
{
|
||||
Dummy,
|
||||
OpenAl,
|
||||
SoundIo,
|
||||
SDL2
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user