mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-10-01 12:30:00 +02:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
13 lines
270 B
C#
13 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,
|
|
}
|
|
}
|