summaryrefslogtreecommitdiffstats
path: root/src/map.h
blob: 554b4288ae1125b9b61ed728a4b6273a1ed09329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MAP_H
#define MAP_H

#include "tileset.h"
#include "layer.h"

struct map {
	int width;
	int height;
	int tilewidth;
	int tileheight;
	struct tileset *tilesets;
	struct layer *layers;
};

#endif