comparison src/map.h @ 20:51a0972fcf76

Move some tilemap/distance stuff out of creep.c and main.c into a separate source file
author Michael Pavone <pavone@retrodev.com>
date Sun, 12 Jan 2014 22:43:03 -0800
parents
children bb7dfb42b320
comparison
equal deleted inserted replaced
19:08f2bcf3447f 20:51a0972fcf76
1 #ifndef MAP_H_
2 #define MAP_H_
3
4 extern u16 distances[20*14];
5 extern u16 tilemap[40*28];
6 void gen_distances(u16 x, u16 y);
7 void print_distances(void);
8
9 #endif //MAP_H_