aboutsummaryrefslogtreecommitdiff
path: root/dat.h
diff options
context:
space:
mode:
Diffstat (limited to 'dat.h')
-rw-r--r--dat.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/dat.h b/dat.h
new file mode 100644
index 0000000..c852a09
--- /dev/null
+++ b/dat.h
@@ -0,0 +1,17 @@
+enum {
+ SCRW = 240,
+ SCRH = 160
+};
+
+typedef unsigned char uchar;
+typedef unsigned short ushort;
+typedef unsigned int uint;
+typedef unsigned long ulong;
+typedef unsigned long long uvlong;
+
+typedef struct Point Point;
+
+struct Point
+{
+ int x, y;
+};