2022-08-02 05:18:13 +00:00
|
|
|
|
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,
|
2022-08-08 12:14:47 +00:00
|
|
|
|
gaming_select,
|
|
|
|
|
end_game_retry,
|
|
|
|
|
end_game_next,
|
2022-08-17 08:22:09 +00:00
|
|
|
|
end_game_select,
|
|
|
|
|
resultpanel
|
2022-08-02 05:18:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
|
RV_sound_unlock,
|
|
|
|
|
RV_level_unlock,
|
|
|
|
|
RV_end_skip,
|
|
|
|
|
}
|