diff options
-rw-r--r-- | FICS/board.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/FICS/board.h b/FICS/board.h index 6741ee2..f170d39 100644 --- a/FICS/board.h +++ b/FICS/board.h @@ -90,10 +90,12 @@ typedef struct _game_state_t { int gameNum; } game_state_t; +/* + * If a drop move, then 'fromFile' is ALG_DROP and 'fromRank' is + * piece. + */ #define ALG_DROP -2 -/* bughouse: if a drop move, then fromFile is ALG_DROP and fromRank is piece */ - typedef struct _move_t { int color; int fromFile, fromRank; |