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

45 lines
1.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class TKGBasicConfig
{
//年龄填写 8、12、16、18
public const string age = "8";
//游戏题材
public const string content = "游戏题材";
//隐私政策链接
public const string PrivacyURL = "https://www.mooncakegame.com/privacy.html";
//用户协议链接
public const string AgreementURL = "https://www.mooncakegame.com/agreements.html";
//更多游戏链接
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
}