home · contact · privacy
Server: Add inanimate things to map memory, integrate into AI searches.
[plomrogue] / src / client / map.h
index 6cef27edf91801864d138797d2935013c073afdb..75978c6432d3c05f678bc0f048b3c8973ea1b51a 100644 (file)
@@ -8,12 +8,15 @@
 
 
 
-/* Try changing map window's focus into direction "d" (north = "N" etc.). */
+/* Try changing map window's focus into direction "d" (north = "N" etc.). Unset
+ * world.focus_each_turn.
+ */
 extern void map_scroll(char d);
 
 /* Center map window on player (even if it is non-visible). */
 extern void map_center();
 
-
+/* Toggle world.focus_each_turn (auto-centering of map on player each turn). */
+extern void toggle_autofocus();
 
 #endif