#ifndef MAP_H_ #define MAP_H_ #include "demo.h" struct map { int* contents; int width; int height; }; /* * Load map exported as CSV file from tiled. */ void load_map(const char* filename, struct map* map); void draw_map(struct demo* demo, struct map* map); void map_init(struct demo* demo); #endif // MAP_H_