diff options
Diffstat (limited to 'cube.c')
| -rw-r--r-- | cube.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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, |