#ifndef MAP_H #define MAP_H #include <stdint.h> #define MAP_WIDTH 16 #define MAP_HEIGHT 119 void init_map(uint16_t* map); #endif