home · contact · privacy
Client: Add auto-center of map on player each new turn (can be toggled).
[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.). */
12 extern void map_scroll(char d);
13
14 /* Center map window on player (even if it is non-visible). */
15 extern void map_center();
16
17 /* Toggle world.focus_each_turn (auto-centering of map on player each turn). */
18 extern void toggle_autofocus();
19
20 #endif