예제 #1
0
 /// <summary>
 /// If the player Looses the game.
 /// </summary>
 public virtual void LooseTheGame(RavenGameCompleteCallback callback)
 {
     gameFinishedCallback = callback;
     miniGameIsRunning    = false;
     gameWin = false;
     Debug.Log("END: Lose");
 }
예제 #2
0
 /// <summary>
 /// If the player Looses the game.
 /// </summary>
 public override void LooseTheGame(RavenGameCompleteCallback callback)
 {
     base.LooseTheGame(callback);
     BubbleDisabled();
 }
예제 #3
0
 /// <summary>
 /// If the player Looses the game.
 /// </summary>
 public override void LooseTheGame(RavenGameCompleteCallback callback)
 {
     base.LooseTheGame(callback);
     StopFishing();
 }
예제 #4
0
 /// <summary>
 /// If the player Looses the game.
 /// </summary>
 public override void LooseTheGame(RavenGameCompleteCallback callback)
 {
     base.LooseTheGame(callback);
     StartHelicopterCrash();
 }
예제 #5
0
 /// <summary>
 /// If the player win the game.
 /// </summary>
 public override void WinTheGame(RavenGameCompleteCallback callback)
 {
     base.WinTheGame(callback);
 }