25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
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. }