home · contact · privacy
Emptied map_objects library of stuff that fits better elsewhere, like a new map_objec...
[plomrogue] / src / map_objects.h
index 80e7c0f0cdad7795c06ba46a4fee0ab200b98381..9ef7f3b3a86bf484651bb7601395011d92d5f1b8 100644 (file)
@@ -5,7 +5,6 @@
 #include "yx_uint16.h"
 
 struct World;
-struct Map;
 
 struct Player {
   struct yx_uint16 pos;
@@ -47,10 +46,4 @@ extern void * build_map_objects (struct World *, void *, char, unsigned char, si
                                  void (*) (struct MapObjDef *, void *));
 extern struct MapObjDef * get_map_obj_def (struct World *, char);
 
-extern struct yx_uint16 find_passable_pos (struct Map *);
-extern char is_passable (struct Map *, struct yx_uint16);
-extern void move_monster (struct World *, struct Monster *);
-extern void move_player (struct World *, char);
-extern void player_wait(struct World *);
-
 #endif