summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'map.h')
-rw-r--r--map.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/map.h b/map.h
new file mode 100644
index 0000000..6b99d9a
--- /dev/null
+++ b/map.h
@@ -0,0 +1,8 @@
+#ifndef map_h
+#define map_h
+
+typedef struct Map {
+ int w, h;
+} Map;
+
+#endif