34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
| 
								 | 
							
								#if UNITY_STANDALONE && !UNITY_IOS && !UNITY_ANDROID
							 | 
						|||
| 
								 | 
							
								public static partial class StaticStringsKey
							 | 
						|||
| 
								 | 
							
								{
							 | 
						|||
| 
								 | 
							
								    
							 | 
						|||
| 
								 | 
							
								    // topon 
							 | 
						|||
| 
								 | 
							
								    public const string TOPON_APPID = "";
							 | 
						|||
| 
								 | 
							
								    public const string TOPON_APPKEY = "";
							 | 
						|||
| 
								 | 
							
								    public const string IntersUnitId = "";
							 | 
						|||
| 
								 | 
							
								    public const string RewardVideoUnitId = "";
							 | 
						|||
| 
								 | 
							
								    public const string NativeUnitId = "";
							 | 
						|||
| 
								 | 
							
								    public const string OpenscreenId = "";
							 | 
						|||
| 
								 | 
							
								    public const string NativeBannerUnitId = "";
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								    public const string GADValue = "";
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								    // touka sdk
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_APPID = TOPON_APPID;
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_APPKEY = TOPON_APPKEY;
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_BANNERID = NativeBannerUnitId;
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_INTERID = IntersUnitId;
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_REWARDID = RewardVideoUnitId;
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_NATIVEID = NativeUnitId;
							 | 
						|||
| 
								 | 
							
								    public const string TOUKA_SDK_SPLASHID = OpenscreenId;
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								    // 广告开关
							 | 
						|||
| 
								 | 
							
								    public const bool BannerSwitch = false;     // banner开关
							 | 
						|||
| 
								 | 
							
								    public const bool InterSwitch = true;      // 插屏开关
							 | 
						|||
| 
								 | 
							
								    public const bool RewardSwitch = true;     // 激励视频开关
							 | 
						|||
| 
								 | 
							
								    public const bool NativeSwitch = false;     // native开关
							 | 
						|||
| 
								 | 
							
								    public const bool SplashSwitch = true;     // 开屏开关
							 | 
						|||
| 
								 | 
							
								}
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								#endif
							 |