diff src/creep.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 a9500e8bff93
children
line wrap: on
line diff
--- a/src/creep.h	Sun Jan 12 22:05:12 2014 -0800
+++ b/src/creep.h	Sun Jan 12 22:43:03 2014 -0800
@@ -17,10 +17,8 @@
 
 #define MAX_CREEPS 40
 extern u16 cur_creeps;
-extern u16 distances[20*14];
+
 u16 spawn_creep(u8 species, s16 x, s16 y);
-void gen_distances(u16 x, u16 y);
-void print_distances(void);
 void update_creeps(void);
 
 #endif //CREEP_H_