#ifndef TILESET_H #define TILESET_H struct tileset { int firstgid; int tilewidth; int tileheight; struct image *image; struct tileset *next; }; #endif