#ifndef MAP_H #define MAP_H #include #include "tileset.h" #include "layer.h" struct map { int width; int height; int tilewidth; int tileheight; struct tileset *tilesets; struct layer *layers; Uint8 *collision; }; #endif