summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'map.h')
-rw-r--r--map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/map.h b/map.h
index fbd64f1..9e2a413 100644
--- a/map.h
+++ b/map.h
@@ -8,5 +8,7 @@ typedef struct Map {
typedef unsigned Map_Tile;
int map_size(int w, int h);
+Map_Tile* map_tiles(Map* m);
+const Map_Tile* map_tilesc(const Map* m);
#endif