コード例 #1
0
ファイル: Forza4.cs プロジェクト: iGo96/tsac-oojava
 public TForza4(int row, int col, int nPlayers, int toWin)
 {
     GridF4 = new TGridF4(row, col, toWin);
     Players = new TPlayers(nPlayers);
     _IsPlaying = false;
     _CurPlayer = -1;
 }
コード例 #2
0
ファイル: Forza4.cs プロジェクト: iGo96/tsac-oojava
 public TForza4()
 {
     GridF4 = new TGridF4();
     Players = new TPlayers(_DefaultnPlayers);
     _IsPlaying = false;  
     _CurPlayer = -1;
     
 }