add make target that prints CC, CFLAGS, and LDFLAGS
[menche_rl.git] / map.h
blob6d222fe1e9627ce6bfaf9de6d8cfe832c62b95aa
1 #define get_tile(sector, y, x) sector[((y) * 16) + (x)]
3 enum tile {
4 TILE_FLAT,
5 TILE_TREE
6 };
8 struct pos {
9 int y;
10 int x;
13 enum tile* get_sector(int, int);