mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-18 16:32:40 +00:00
13 lines
263 B
C#
13 lines
263 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<GraphicsBackend>))]
|
|
public enum GraphicsBackend
|
|
{
|
|
Vulkan,
|
|
OpenGl
|
|
}
|
|
}
|