1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef _MAP_H #define _MAP_H #define MAP_TILE_W 8 #define MAP_TILE_H 8 #define MAP_W 40 #define MAP_H 23 #define MAP_OFFS_Y 16 #define MAP_TILESET_COLS 20 void map_init(const uint8_t map[]); void map_render(); #endif /* _MAP_H */