mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 17:12:21 -05:00
14 lines
270 B
C#
14 lines
270 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<BackendThreading>))]
|
|
public enum BackendThreading
|
|
{
|
|
Auto,
|
|
Off,
|
|
On,
|
|
}
|
|
}
|