aboutsummaryrefslogtreecommitdiff
path: root/nullgame.c
diff options
context:
space:
mode:
Diffstat (limited to 'nullgame.c')
-rw-r--r--nullgame.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/nullgame.c b/nullgame.c
index 32e6e2c..67982b9 100644
--- a/nullgame.c
+++ b/nullgame.c
@@ -15,6 +15,7 @@
#include <stdlib.h>
#include <string.h>
#include <assert.h>
+#include <ctype.h>
#include <math.h>
#include "puzzles.h"
@@ -61,6 +62,20 @@ game_params *dup_params(game_params *params)
return ret;
}
+game_params *decode_params(char const *string)
+{
+ game_params *ret = snew(game_params);
+
+ ret->FIXME = 0;
+
+ return ret;
+}
+
+char *encode_params(game_params *params)
+{
+ return dupstr("FIXME");
+}
+
config_item *game_configure(game_params *params)
{
return NULL;