1. 新增国家选择UI组件与相关配置文件 2. 新增多语言国家列表支持与获取接口 3. 新增设备统计数据上报定时任务 4. 修复固件版本号计算的索引错误 5. 添加新的多语言提示文案
16 lines
319 B
C#
16 lines
319 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using Kill.Managers;
|
|
public class SelectCountry : MonoBehaviour
|
|
{
|
|
public GameObject countryPrefab;
|
|
public Transform countryParent;
|
|
LanguageManager.Country selectCountry;
|
|
public void Init(string code)
|
|
{
|
|
|
|
}
|
|
|
|
}
|