mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-18 06:41:55 +00:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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,
|
|
}
|
|
}
|