diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2013-10-07 14:11:24 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2013-10-07 14:11:24 +0200 |
| commit | 677385ffdd1e330cfba4dd712ca58595feeea41d (patch) | |
| tree | d256c7c6a86b3efe4af2e97fa72cc35eb32ec33e /mapgen.h | |
| download | fx-maze-677385ffdd1e330cfba4dd712ca58595feeea41d.tar.gz fx-maze-677385ffdd1e330cfba4dd712ca58595feeea41d.zip | |
initial commit
Diffstat (limited to 'mapgen.h')
| -rw-r--r-- | mapgen.h | 18 |
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 |
