summaryrefslogtreecommitdiffstats
path: root/src/tileset.h
blob: 26aec80f1d0ee0ad420329891f3e586573a7bbdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef TILESET_H
#define TILESET_H

struct tileset {
	int firstgid;
	int tilewidth;
	int tileheight;
	struct image *image;
	struct tileset *next;
};

#endif