summaryrefslogtreecommitdiff
path: root/includes/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes/defines.h')
-rw-r--r--includes/defines.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/includes/defines.h b/includes/defines.h
index 11b9a53..f5d2385 100644
--- a/includes/defines.h
+++ b/includes/defines.h
@@ -56,6 +56,12 @@ extern unsigned char ZSIZE;
#define STAMP_Y 4
#define STAMP_MAX 120
+#define NGOL 13
+
+#define CIRCLE_BRUSH 0
+#define SQUARE_BRUSH 1
+#define BRUSH_NUM 2
+
#ifdef PIX16
typedef unsigned short pixel;
#else
@@ -80,6 +86,15 @@ extern int amd;
extern int FPSB;
+int NUM_PARTS;
+int GRAV;
+int GRAV_R;
+int GRAV_G;
+int GRAV_B;
+int GRAV_R2;
+int GRAV_G2;
+int GRAV_B2;
+
extern int legacy_enable;
extern int sys_pause;
@@ -103,6 +118,24 @@ struct stamp
};
typedef struct stamp stamp;
+int MSIGN;
+int CGOL;
+int ISGOL;
+int ISLOVE;
+int ISLOLZ;
+int ISGRAV;
+int ISWIRE;
+int GSPEED;
+int love[XRES/9][YRES/9];
+int lolz[XRES/9][YRES/9];
+int gol[XRES][YRES];
+int gol2[XRES][YRES][NGOL];
+int SEC;
+int SEC2;
+int REPLACE_MODE;
+int CURRENT_BRUSH;
+int GRID_MODE;
+int VINE_MODE;
extern sign signs[MAXSIGNS];
extern stamp stamps[STAMP_MAX];
extern int stamp_count;