23 lines
		
	
	
		
			647 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			647 B
		
	
	
	
		
			C#
		
	
	
	
| using System.Collections.Generic;
 | ||
| 
 | ||
| //自定义在线参数,后面改json配置文件,暂时用代码文件顶替
 | ||
| public static class TKGParams
 | ||
| {
 | ||
|     public static readonly Dictionary<string, object> OnlineParamDic = new Dictionary<string, object>()
 | ||
|     {
 | ||
|         { TKGParamKey.UserGroup.ToString(), "Default" },
 | ||
|         { TKGParamKey.RemoveAdsShow.ToString(), 2 },
 | ||
|         { TKGParamKey.RemoveAds.ToString(), 4 },
 | ||
|         { TKGParamKey.LevelInterSwitch.ToString(), 3 },
 | ||
|         { TKGParamKey.LevelList.ToString(), ""}
 | ||
|     };
 | ||
| }
 | ||
| 
 | ||
| public enum TKGParamKey
 | ||
| {
 | ||
|     UserGroup,
 | ||
|     RemoveAdsShow,
 | ||
|     RemoveAds,
 | ||
|     LevelInterSwitch,
 | ||
|     LevelList
 | ||
| } |