home · contact · privacy
75978c6432d3c05f678bc0f048b3c8973ea1b51a
[plomrogue] / src / client / map.h
1 /* src/client/map.h
2  *
3  * Routines for the game map window.
4  */
5
6 #ifndef MAP_H_CLIENT
7 #define MAP_H_CLIENT
8
9
10
11 /* Try changing map window's focus into direction "d" (north = "N" etc.). Unset
12  * world.focus_each_turn.
13  */
14 extern void map_scroll(char d);
15
16 /* Center map window on player (even if it is non-visible). */
17 extern void map_center();
18
19 /* Toggle world.focus_each_turn (auto-centering of map on player each turn). */
20 extern void toggle_autofocus();
21
22 #endif