misc: Move the rest of Ryujinx.UI.Common into other parts of the project.

This commit is contained in:
Evan Husted
2024-12-29 19:28:27 -06:00
parent 4f699afe7a
commit f5ce539de9
61 changed files with 90 additions and 114 deletions

View File

@@ -0,0 +1,17 @@
using Ryujinx.Common.Utilities;
using System.Text.Json.Serialization;
namespace Ryujinx.Ava.Utilities.Configuration.System
{
[JsonConverter(typeof(TypedStringEnumConverter<Region>))]
public enum Region
{
Japan,
USA,
Europe,
Australia,
China,
Korea,
Taiwan,
}
}