24 lines
		
	
	
		
			820 B
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
		
			820 B
		
	
	
	
		
			C#
		
	
	
	
|  | using System.Collections; | |||
|  | using System.Collections.Generic; | |||
|  | using UnityEngine; | |||
|  | 
 | |||
|  | namespace MMO | |||
|  | { | |||
|  |     [CreateAssetMenu(menuName = "MMO/MMOConstConfig")] | |||
|  |     public class MMOConstConfig : MMOConfigBase<MMOConstConfig> | |||
|  |     { | |||
|  |         public bool IsEnabled = true; | |||
|  |         public bool KeepLoading = true; | |||
|  |          | |||
|  |         public string ServerUrl = "http://touka.ngame8.cn:5588/touka/"; | |||
|  |         public int UploadInterval = 20; | |||
|  |         public string EMail = "redeem@hotpotgame.com"; | |||
|  | 
 | |||
|  |         public string InvitableParam = "Invitable"; | |||
|  |         public string ShareContentParam = "ShareContent"; | |||
|  |         public string BonusLevelParam = "BonusLevel"; | |||
|  |         public string BonusDiamondParam = "BonusDiamond"; | |||
|  |         public string InviteCountParam = "InviteCount"; | |||
|  |         public string InviteLevelParam = "InviteLevel"; | |||
|  |     } | |||
|  | } |