summaryrefslogtreecommitdiff
path: root/map.h
blob: fbd64f14d2954b269f2c3fa4f1a07e651c24faba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef map_h
#define map_h

typedef struct Map {
	int w, h;
} Map;

typedef unsigned Map_Tile;

int map_size(int w, int h);

#endif