//========================================================================

    public void OnStartGameButtonPressed()
    {
        menu.Deactivate();
        scorePanel.Activate();

        bird.OnStartGame();
        obstacleManager.OnStartGame();
        backgroundController.OnStartGame();

        isRunning = true;
    }