Beispiel #1
0
 /// <summary>
 /// 广告
 /// </summary>
 public static void PlayAD()
 {
     try
     {
         s_ADService.PlayAD();
     }
     catch (Exception e)
     {
         Debug.Log("SDKManager AD Exception: " + e.ToString());
     }
 }
 /// <summary>
 /// 显示广告
 /// </summary>
 public static void PlayAD(ADType adType)
 {
     try
     {
         s_ADService.PlayAD(adType);
     }
     catch (Exception e)
     {
         Debug.LogError("SDKManager PlayAD Exception: " + e.ToString());
     }
 }