Exemplo n.º 1
0
    } // end NewGame

    public void ContinueGame(string recordPath)
    {
        Global.GameMode = GameMode.Interactive;
        GameObject checkerboardGo = new GameObject("Checkerboard");

        checkerboardGo.transform.SetParent(transform, Vector3.zero, Quaternion.identity, Vector3.one);
        CheckerboardControl = new CheckerboardControl(checkerboardGo, recordPath);
        UIManager.Instance.OpenForm(new UIGameMenu());
    } // end ContinueGame
Exemplo n.º 2
0
    } // end WatchVideo

    public void ExitGame()
    {
        if (null == CheckerboardControl)
        {
            return;
        }
        // end if
        CheckerboardControl.Dispose();
        CheckerboardControl = null;
    } // end ExitGame