summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-07-31 22:12:48 +1000
committerquou <quou@disroot.org>2024-07-31 22:12:48 +1000
commit205f7d49530e6c32ec0a09045d9cb45dcf9b1752 (patch)
treee1d3432a677ff3511ed191aabfde6cf240f784b7 /map.h
parent8d729883b3e134df8b9fc10f094df9fc3618bdb4 (diff)
GUI + map editor beginnings
Diffstat (limited to 'map.h')
-rw-r--r--map.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/map.h b/map.h
index 6b99d9a..fbd64f1 100644
--- a/map.h
+++ b/map.h
@@ -5,4 +5,8 @@ typedef struct Map {
int w, h;
} Map;
+typedef unsigned Map_Tile;
+
+int map_size(int w, int h);
+
#endif