您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
597 B
18 行
597 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
using HuaweiService;
|
|
|
|
namespace HuaweiService.Auth
|
|
{
|
|
public class Locale_Data : IHmsBaseClass{
|
|
public string name => "java.util.Locale";
|
|
}
|
|
public class Locale :HmsClass<Locale_Data>
|
|
{
|
|
public static Locale CHINA => HmsUtil.GetStaticValue<Locale>("CHINA");
|
|
public Locale (string arg0): base(arg0) { }
|
|
public Locale (string arg0, string arg1): base(arg0, arg1) { }
|
|
public Locale (string arg0, string arg1, string arg2): base(arg0, arg1, arg2) { }
|
|
public Locale (): base() { }
|
|
}
|
|
}
|