aboutsummaryrefslogtreecommitdiff
path: root/nullgame.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2004-05-01 11:32:12 +0000
committerSimon Tatham <anakin@pobox.com>2004-05-01 11:32:12 +0000
commit44ff00665b271ffc789d750d8ad2e5cf25e5327d (patch)
tree013080058231a0f55553d046db86a9f3ecc19502 /nullgame.c
parentb1bfb378f4132d77994bf351c63e37b76907021b (diff)
downloadpuzzles-44ff00665b271ffc789d750d8ad2e5cf25e5327d.zip
puzzles-44ff00665b271ffc789d750d8ad2e5cf25e5327d.tar.gz
puzzles-44ff00665b271ffc789d750d8ad2e5cf25e5327d.tar.bz2
puzzles-44ff00665b271ffc789d750d8ad2e5cf25e5327d.tar.xz
Configuration dialog box, on the GTK front end only as yet.
[originally from svn r4182]
Diffstat (limited to 'nullgame.c')
-rw-r--r--nullgame.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/nullgame.c b/nullgame.c
index 3d278ad..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");