mergemilitary/Assets/TKGSDK/Config/Scripts/TKGBasicConfig.cs

45 lines
1.9 KiB
C#
Raw Normal View History

2022-05-23 13:39:59 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class TKGBasicConfig
{
//年龄填写 8、12、16、18
public const string age = "8";
//游戏题材
2022-06-13 08:18:14 +00:00
public const string content = "合成格斗";
2022-05-23 13:39:59 +00:00
//隐私政策链接
2022-06-13 07:55:30 +00:00
public const string PrivacyURL = "https://www.mooncakegame.com/privacy.html";
2022-05-23 13:39:59 +00:00
//用户协议链接
2022-06-13 07:55:30 +00:00
public const string AgreementURL = "https://www.mooncakegame.com/agreements.html";
2022-05-23 13:39:59 +00:00
//更多游戏链接
public const string MoreGameURL = "https://apps.apple.com/developer/mooncake-games-limited/id1521253916";
//hotpotgames: https://apps.apple.com/developer/mooncake-games-limited/id1521253916
//toukagames: https://apps.apple.com/cn/developer/toukagames/id1544391713
#region privacy detail
//隐私政策链接
//包名为com.toukagames.xxx
//Touka主体(国内ios发行人、国内安卓发行人、海外Ios、海外GP)https://www.toukagame.com/PrivacyPolicy.html
//包名为com.zlsz.xxx
//字量主体(国内安卓体外)http://ltworks.co/privacy.html
//包名为com.hotpotgames.xxx
//火锅主体(海外Ios、海外GP)https://www.hotpotgame.com/privacy.html
//幕恩凯克主体(国内ios发行人、国内安卓发行人)https://www.mooncakegame.com/privacy.html
#endregion
#region agreement detail
//用户协议链接
//包名为com.toukagames.xxx
//Touka主体(国内ios发行人、国内安卓发行人、海外Ios、海外GP)https://toukagame.com/agreement.html
//包名为com.zlsz.xxx
//字量主体(国内安卓体外)http://ltworks.co/agreement.html
//包名为com.hotpotgames.xxx
//火锅主体(海外Ios、海外GP):暂无
//幕恩凯克主体(国内ios发行人、国内安卓发行人)https://www.mooncakegame.com/agreements.html
#endregion
}