aboutsummaryrefslogtreecommitdiff
path: root/cube.c
diff options
context:
space:
mode:
Diffstat (limited to 'cube.c')
-rw-r--r--cube.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/cube.c b/cube.c
index 33ef6d3..5166762 100644
--- a/cube.c
+++ b/cube.c
@@ -985,6 +985,12 @@ static void free_game(game_state *state)
sfree(state);
}
+static game_state *solve_game(game_state *state, game_aux_info *aux,
+ char **error)
+{
+ return NULL;
+}
+
static char *game_text_format(game_state *state)
{
return NULL;
@@ -1557,6 +1563,7 @@ const struct game thegame = {
new_game,
dup_game,
free_game,
+ FALSE, solve_game,
NULL, game_text_format,
new_ui,
free_ui,