summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2022-01-25 22:07:12 -0500
committerRobby Zambito <contact@robbyzambito.me>2022-01-25 22:07:12 -0500
commit2206201ed53f3d3c51a2687772fdb8c908bb11e2 (patch)
tree7ffab422327d9d86ccba8fff9d212cdf33ef16d5 /include
parent8522d9cbe81dd982bab1bdebec89b5b4e1c66ec3 (diff)
Added move constructor and extract row and colHEADmaster
Diffstat (limited to 'include')
-rw-r--r--include/othello_move.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/othello_move.h b/include/othello_move.h
index 6b58bbe..50fe899 100644
--- a/include/othello_move.h
+++ b/include/othello_move.h
@@ -53,3 +53,7 @@ SCM scm_apply_move(SCM move, SCM board, SCM current_player);
SCM scm_get_num_flipped_by_move(SCM move, SCM board, SCM current_player);
struct move scm_move_to_c_move(SCM scm_move);
+
+SCM scm_new_move(SCM row, SCM col);
+SCM scm_move_to_row(SCM move);
+SCM scm_move_to_col(SCM move);