예제 #1
0
 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
 public TForza4()
 {
     GridF4     = new TGridF4();
     Players    = new TPlayers(_DefaultnPlayers);
     _IsPlaying = false;
     _CurPlayer = -1;
 }