Esempio n. 1
0
 static void MakeResume()
 {
     if (Application.isPlaying)
     {
         Debug.Log("AppResume called");
         StaticEventHelper.CallResumeEvent();
     }
 }
Esempio n. 2
0
 static void MakeBannerShow()
 {
     if (Application.isPlaying)
     {
         Debug.Log("ShowBannerEvent called");
         StaticEventHelper.CallShowBannerEvent();
     }
 }
Esempio n. 3
0
 static void MakePause()
 {
     if (Application.isPlaying)
     {
         Debug.Log("AppPause called");
         StaticEventHelper.CallPauseEvent();
     }
 }