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