42 lines
		
	
	
		
			709 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			709 B
		
	
	
	
		
			C#
		
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| /// <summary>
 | |
| /// InterstitialAd PositionName
 | |
| /// (get from the product requirements)
 | |
| /// </summary>
 | |
| public enum TKGIVAdPositionName
 | |
| {
 | |
|     Game_Autoiv,
 | |
| 
 | |
|     IV_Success,
 | |
|     IV_Fail,
 | |
|     IV_Retry,
 | |
|     IV_NextLevel,
 | |
|     IV_Back,
 | |
| }
 | |
| 
 | |
| public enum TKGNativePositionName
 | |
| {
 | |
|     Native_Stage_Success,
 | |
|     Native_Stage_Fail
 | |
| }
 | |
| 
 | |
| /// <summary>
 | |
| /// RewardAd PositionName
 | |
| /// (get from the product requirements)
 | |
| /// </summary>
 | |
| public enum TKGRVPositionName
 | |
| {
 | |
|     RV_GetDoubleCoin,
 | |
|     RV_GetTips,
 | |
|     RV_Get_Tips,
 | |
|     RV_Get_Skip,
 | |
|     RV_Get_Revive,
 | |
|     RV_Get_SpecialLevel,
 | |
|     Get_Human,
 | |
|     Get_Monster,
 | |
|     Get_Coin,
 | |
|     Get_AutoMerge,
 | |
| } |