Exemplo n.º 1
0
    // Use this for initialization
    void Start()
    {
        //push instance to static
        s_instance = this;

        //get helper script references
        m_gameboard = TTT_Gameboard.GetInstance();

        //initialize the game history data
        m_game_history = new GameHistory();
        m_game_history.Initialize();

        //begin by selecting the marks each player will use
        m_player_mark_sprites = new Sprite[NUMBER_OF_PLAYERS];
        selectPlayerMarks();
    }