aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Font/SharedFontType.cs
blob: 53dca62664d5cf2e54f6020c64abedcf8fef1e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.HLE.HOS.Font
{
    public enum SharedFontType
    {
        JapanUsEurope       = 0,
        SimplifiedChinese   = 1,
        SimplifiedChineseEx = 2,
        TraditionalChinese  = 3,
        Korean              = 4,
        NintendoEx          = 5,
        Count
    }
}