예제 #1
0
파일: HGameplay.cs 프로젝트: lxynb/MiniGame
 /// <summary>
 /// [Framework Method] Send signal to continue game.<para />
 /// Called after user receive continue game reward.
 /// </summary>
 void ContinueGame()
 {
     try
     {
         OnGameContinue.Dispatch();
     }
     catch (Exception exception)
     {
         Debug.LogError(exception);
     }
 }
예제 #2
0
 public static void OnGameContinueFunction()
 {
     OnGameContinue?.Invoke();
 }