home · contact · privacy
Server: Remove unneeded library includes.
[plomrogue] / src / server / map.h
index e3a28f9dc99b15dbccd5f03278779356ef524ab0..d704bc27ba81c15144d4ac31e382aa5171c5dbcc 100644 (file)
@@ -7,7 +7,7 @@
 #define MAP_H_SERVER
 
 #include <stdint.h> /* uint8_t */
-#include "../common/yx_uint8.h" /* yx_uint8 */
+struct yx_uint8;
 
 
 
  */
 extern void remake_map();
 
-/* Check if coordinate "pos" on (or beyond) world.map is accessible to thing
- * movement.
- */
-extern uint8_t is_passable(struct yx_uint8 pos);
-
 /* Wrapper to mv_yx_in_dir_wrap(), returns 1 if the wrapped function moved "yx"
  * within the wrap borders and the map size, else 0.
  */