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