mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 23:29:51 -06: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
|
|
}
|
|
}
|