From 1e4407da677dd7a192c817de16583bb7199ceeb0 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sat, 16 Feb 2013 21:35:48 -0500 Subject: TMX parser rewrite number one. --- (limited to 'src/resources/map.h') diff --git a/src/resources/map.h b/src/resources/map.h new file mode 100644 index 0000000..04fcf27 --- /dev/null +++ b/src/resources/map.h @@ -0,0 +1,27 @@ +#ifndef RESOURCE_MAP_H +#define RESOURCE_MAP_H + +#include +#include "resource.h" +#include "tileset.h" +#include "layer.h" + +struct map { + struct resource res; + int width; + int height; + int tilewidth; + int tileheight; + struct tileset *tilesets_head; + struct tileset *tilesets_tail; + struct layer *layers_head; + struct layer *layers_tail; + Uint8 *collision; +}; + +struct map *map_get(const char *path); +void map_free(struct map *map); +void map_add_layer(struct map *m, struct layer *l); +void map_add_tileset(struct map *m, struct tileset *t); + +#endif -- cgit v0.9.1