private void GameView_Load(object sender, EventArgs e) { //ScoreboardView scoreboard = controller.getViewScoreboard(); TicTacToeView ticTacToe = controller.getViewTicTacToe(); //ticTacToe.Location = new Point(0, scoreboard.Height); //Controls.Add(scoreboard); Controls.Add(ticTacToe); }
public TicTacToeController(GameController cont) { container = cont; view = new TicTacToeView(this); model = new TicTacToeModel(); }