summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/map.h b/src/map.h
new file mode 100644
index 0000000..325b3bc
--- /dev/null
+++ b/src/map.h
@@ -0,0 +1,10 @@
+#pragma once
+#include "../map/tmj2c.h"
+
+void map_next(void);
+int map_width(void);
+int map_height(void);
+int map_get(int x, int y);
+int map_get_px(int x, int y);
+void map_draw(void);
+const Tmj2cObject *map_objects(unsigned int *size);