repo.or.cz
/
menche_rl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add make target that prints CC, CFLAGS, and LDFLAGS
[menche_rl.git]
/
map.h
blob
6d222fe1e9627ce6bfaf9de6d8cfe832c62b95aa
1
#define get_tile(sector, y, x) sector[((y) * 16) + (x)]
2
3
enum
tile
{
4
TILE_FLAT
,
5
TILE_TREE
6
};
7
8
struct
pos
{
9
int
y
;
10
int
x
;
11
};
12
13
enum
tile
*
get_sector
(
int
,
int
);
14