Move solution and projects to src
This commit is contained in:
17
src/Ryujinx.Ui.Common/Configuration/System/Region.cs
Normal file
17
src/Ryujinx.Ui.Common/Configuration/System/Region.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Ryujinx.Common.Utilities;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Ryujinx.Ui.Common.Configuration.System
|
||||
{
|
||||
[JsonConverter(typeof(TypedStringEnumConverter<Region>))]
|
||||
public enum Region
|
||||
{
|
||||
Japan,
|
||||
USA,
|
||||
Europe,
|
||||
Australia,
|
||||
China,
|
||||
Korea,
|
||||
Taiwan
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user