Exemplo n.º 1
0
 public TicTacToeWinEventArgs(TicTacToe game, IEnumerable <Point> lineWin)
 {
     this.lineWin = lineWin;
     CurrentTeam  = game.Side.Current;
 }
Exemplo n.º 2
0
 public TicTacToeMoveEventArgs(TicTacToe game, int x, int y)
 {
     X           = x;
     Y           = y;
     CurrentTeam = game.Side.Current;
 }