X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/699b896a50af2c8d5b7fe14781b6bacbd8aa8d99..077f3cbef8366f3cd57f07cb3eb5118457ea4f6d:/nullgame.c diff --git a/nullgame.c b/nullgame.c index 5ce6f07..42682e2 100644 --- a/nullgame.c +++ b/nullgame.c @@ -20,6 +20,7 @@ #include "puzzles.h" const char *const game_name = "Null Game"; +const int game_can_configure = FALSE; enum { COL_BACKGROUND, @@ -60,6 +61,21 @@ game_params *dup_params(game_params *params) return ret; } +config_item *game_configure(game_params *params) +{ + return NULL; +} + +game_params *custom_params(config_item *cfg) +{ + return NULL; +} + +char *validate_params(game_params *params) +{ + return NULL; +} + char *new_game_seed(game_params *params) { return dupstr("FIXME"); @@ -144,3 +160,8 @@ float game_flash_length(game_state *oldstate, game_state *newstate) { return 0.0F; } + +int game_wants_statusbar(void) +{ + return FALSE; +}