aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/SystemState/RegionCode.cs
blob: 111227237a152564a1e1505980a2c00a42ea62ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Ryujinx.HLE.HOS.SystemState
{
    // nn::settings::RegionCode
    public enum RegionCode
    {
        Japan,
        USA,
        Europe,
        Australia,
        China,
        Korea,
        Taiwan,

        Min = Japan,
        Max = Taiwan,
    }
}