SharedFontType.cs 289 B

12345678910111213
  1. namespace Ryujinx.HLE.HOS.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. Count
  12. }
  13. }