public virtual void StartMultiplayer()
    {
        MainGameController.ShowHud(true);
        UINavigationController.DismissAllControllers();
        UINavigationController.DismissBackground("/MainBackground");

        MainGameController.StartMultiplayerGame();
    }
    protected virtual void StartGame()
    {
        MainGameController.ShowHud(true);
        UINavigationController.DismissAllControllers();
        UINavigationController.DismissBackground("/MainBackground");

        MainGameController.StartLocalSinglePlayerGame();
    }
Esempio n. 3
0
    public void ShowQuestionsPanel(QuestionData.question q)
    {
        SetButtonEnabled(true);

        MainGameController.ShowHud(false);
        UINavigationController.PushBackground("/MainBackground");
        UINavigationController.PushController(questionDialog);

        PrepareQuestion(q);
    }
Esempio n. 4
0
 public void ShowCategory(Node node)
 {
     MainGameController.ShowHud(false);
     UINavigationController.PushBackground("/MainBackground");
     UINavigationController.PushController(questionCategoryDialog);
 }