コード例 #1
0
ファイル: TicTacToeForm.cs プロジェクト: RandomRobin/Net-P1
 public Form1()
 {
     InitializeComponent();
     this.tic = new TicTacToe();
     tic.Reset();
 }
コード例 #2
0
 private void LoadButtons(TicTacToe chess)
 {
     this.Controls.AddRange(chess.ButtonList);
 }