summaryrefslogtreecommitdiffstats
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h
new file mode 100644
index 0000000..554b428
--- /dev/null
+++ b/src/map.h
@@ -0,0 +1,16 @@
+#ifndef MAP_H
+#define MAP_H
+
+#include "tileset.h"
+#include "layer.h"
+
+struct map {
+ int width;
+ int height;
+ int tilewidth;
+ int tileheight;
+ struct tileset *tilesets;
+ struct layer *layers;
+};
+
+#endif