예제 #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;
     
 }