home · contact · privacy
Reworked "actors" library as more inclusive "objects_on_map".
[plomrogue] / src / roguelike.h
index 5041caf34bb3f20bdf063c471fb8340246d78d2e..14ca783d5ae43858d2990e9390bb24e0768b0c2a 100644 (file)
@@ -26,16 +26,10 @@ struct Map {
   struct yx_uint16 offset;
   char * cells; };
 
-struct Item {
-  struct Item * next;
-  char name;
-  struct yx_uint16 pos; };
-
 extern uint16_t rrand(char, uint32_t);
 extern void update_log (struct World *, char *);
 
 extern struct Map init_map ();
-extern struct yx_uint16 find_passable_pos (struct Map *);
 extern void map_scroll (struct Map *, char);
 
 extern void turn_over (struct World *, char);