Ejemplo n.º 1
0
    public void Clicked()
    {
        //If there's enough lives, allow the player to restart the current level

        if (gameOverTrigger.lives >= 0)
        {
            player.LoadPreviousScene();
        }
    }