summaryrefslogtreecommitdiff
path: root/mapgen.h
diff options
context:
space:
mode:
Diffstat (limited to 'mapgen.h')
-rw-r--r--mapgen.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/mapgen.h b/mapgen.h
new file mode 100644
index 0000000..972e43c
--- /dev/null
+++ b/mapgen.h
@@ -0,0 +1,18 @@
+#ifndef _MAPGEN_H_
+#define _MAPGEN_H_
+
+union st_field
+{
+ int byte;
+ struct
+ {
+ int west;
+ int east;
+ int north;
+ int south;
+ }side;
+};
+
+void maze(void);
+
+#endif \ No newline at end of file