blob: ca8a42b0cdb5d3112099d202164dafafa8a89010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Ryujinx.HLE.Font
{
public enum SharedFontType
{
JapanUsEurope = 0,
SimplifiedChinese = 1,
SimplifiedChineseEx = 2,
TraditionalChinese = 3,
Korean = 4,
NintendoEx = 5
}
}
|