Exemplo n.º 1
0
 public ChessDelayedAction(ChessDelayedActionType action, ChessColor color, ChessPieceCoord from, ChessPieceCoord to, bool stalemate = false)
 {
     Action    = action;
     Color     = color;
     From      = from;
     To        = to;
     Stalemate = stalemate;
 }
Exemplo n.º 2
0
 public ChessDelayedAction(ChessDelayedActionType action, ChessColor color, bool stalemate = false)
 {
     Action    = action;
     Color     = color;
     Stalemate = stalemate;
 }
Exemplo n.º 3
0
 public ChessDelayedAction(ChessDelayedActionType action)
 {
     Action = action;
 }