Esempio n. 1
0
 /// <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);
     }
 }
 public static void OnGameContinueFunction()
 {
     OnGameContinue?.Invoke();
 }