From 677385ffdd1e330cfba4dd712ca58595feeea41d Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 7 Oct 2013 14:11:24 +0200 Subject: initial commit --- mapgen.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 mapgen.h (limited to 'mapgen.h') 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 -- cgit v1.3.1