#ifndef CONFIGURE_H #define CONFIGURE_H #define VERSION 0.1 /* some stuff */ #ifndef TRUE #define TRUE 1 #define FALSE 0 #endif #define BOOLEAN int /* Don't change this, because it will not work right with the GUI. Sorry! */ #define HEIGHT 10 #define WIDTH 5 /* You can change this, if you want, but it must be less than 27 */ #define COLORS 10 #endif