Esempio 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;
 }
Esempio n. 2
0
 public ChessDelayedAction(ChessDelayedActionType action, ChessColor color, bool stalemate = false)
 {
     Action    = action;
     Color     = color;
     Stalemate = stalemate;
 }
Esempio n. 3
0
 public ChessDelayedAction(ChessDelayedActionType action)
 {
     Action = action;
 }