home · contact · privacy
Emptied map_objects library of stuff that fits better elsewhere, like a new map_objec...
[plomrogue] / src / misc.h
index 5bccd401394cec7e86393eec2e4bbc7d122e2f7c..64e10db078e6d38dcd71645ef8649f65ec13499f 100644 (file)
@@ -2,10 +2,12 @@
 #define MISC_H
 
 #include <stdint.h>
+#include "yx_uint16.h"
 
 struct World;
 struct WinMeta;
 struct Win;
+struct Map;
 
 extern uint16_t rrand(char, uint32_t);
 extern void update_log (struct World *, char *);
@@ -15,6 +17,7 @@ extern void save_game(struct World *);
 extern void toggle_window (struct WinMeta *, struct Win *);
 extern void scroll_pad (struct WinMeta *, char);
 extern void growshrink_active_window (struct WinMeta *, char);
+extern struct yx_uint16 find_passable_pos (struct Map *);
 extern unsigned char meta_keys(int, struct World *, struct WinMeta *, struct Win *, struct Win *, struct Win *, struct Win *);
 
 #endif