map.h 131 B

12345678910
  1. #ifndef MAP_H
  2. #define MAP_H
  3. #include <stdint.h>
  4. #define MAP_WIDTH 16
  5. #define MAP_HEIGHT 119
  6. void init_map(uint16_t* map);
  7. #endif