You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 rivejä
387 B

  1. using System;
  2. using UnityEngine;
  3. namespace CIG.Translation.Native
  4. {
  5. public static class AndroidLocale
  6. {
  7. public static string[] GetLanguages()
  8. {
  9. //TODODO ÓïÑÔ
  10. string[] result = new string[]
  11. {
  12. "zh"
  13. };
  14. return result;
  15. }
  16. }
  17. }