diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..beafcf6 --- /dev/null +++ b/config.h @@ -0,0 +1,31 @@ +/************** + * GameOfLife * + **************/ + +/* the number of random spawns per cycle */ +#define RANDOM_SPAWNS 20 + +/* enable hotkeys q, p, c, +/- */ +#define ENABLE_HOTKEYS 1 + +/* enable the upper status bar */ +#define ENABLE_STATUS 1 + +/* enable the cursor */ +#define ENABLE_CURSOR 1 + +/* set the cursor symbol */ +#define CURSOR_CHAR '#' + + +/************** + * DummyShell * + **************/ + +#define _HAS_CMD 1 +#define _HAS_MSG 1 +#define _HAS_HOSTENT 1 +#define _HAS_SIGNAL 1 +#define _HAS_UTMP 1 +#define _HAS_SYSINFO 1 + |