mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-26 08:23:00 +00:00
Moved AppLibrary, Configuration, and PlayReport namespaces to Ryujinx.Systems, add the compat list stuff in the base Ryujinx.Systems namespace. Moved the compatibility UI stuff to the proper UI view/viewmodel folders.
17 lines
332 B
C#
17 lines
332 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Systems.Configuration.System
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<Region>))]
|
|
public enum Region
|
|
{
|
|
Japan,
|
|
USA,
|
|
Europe,
|
|
Australia,
|
|
China,
|
|
Korea,
|
|
Taiwan,
|
|
}
|
|
}
|