16 lines
		
	
	
		
			519 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			519 B
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| /// 统一定义游戏内打点事件名称
 | |
| /// </summary>
 | |
| public static partial class StaticStringsEvent
 | |
| {
 | |
|     // stage
 | |
|     public const string Event_Sort_stage_start = "Level_Start";
 | |
|     public const string Event_Sort_stage_time = "Level_Time";
 | |
|     public const string Event_Sort_stage_failure = "Level_Fail";
 | |
|     public const string Event_Sort_stage_success = "Level_Success";
 | |
| 
 | |
|     public const string Event_Sort_stage_level = "Level";
 | |
|     public const string Event_Sort_time_long = "time_long";
 | |
| 
 | |
| 
 | |
| } |