SharedFontType.cs 270 B

123456789101112
  1. namespace Ryujinx.HLE.Font
  2. {
  3. public enum SharedFontType
  4. {
  5. JapanUsEurope = 0,
  6. SimplifiedChinese = 1,
  7. SimplifiedChineseEx = 2,
  8. TraditionalChinese = 3,
  9. Korean = 4,
  10. NintendoEx = 5
  11. }
  12. }