summaryrefslogtreecommitdiff
path: root/include/othello_board.h
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2022-01-23 17:13:28 -0500
committerRobby Zambito <contact@robbyzambito.me>2022-01-23 17:13:28 -0500
commit233750ab72abb2101a9b35211b90c0318020b2c9 (patch)
tree7d6e68518896ddd97b841570d1e417b2ce0c70a2 /include/othello_board.h
parentb2ab3b9466dc7d4d46795baa956a985cfdfd701d (diff)
Highlight the previous move.
This is particularly helpful when using the game to play on a real board
Diffstat (limited to 'include/othello_board.h')
-rw-r--r--include/othello_board.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/othello_board.h b/include/othello_board.h
index 99ad839..a8299fc 100644
--- a/include/othello_board.h
+++ b/include/othello_board.h
@@ -32,7 +32,7 @@ enum player_color **copy_board(enum player_color **board);
void free_board(enum player_color **board);
// Prints the current state of the board, including coordinates in the margins.
-void print_board(enum player_color **board);
+void print_board(enum player_color **board, struct move *highlighted_moves, size_t highlighted_moves_length);
void scm_print_board(SCM board);
// Returns the current board.