home · contact · privacy
bd919d85fd3d2aa707f4b61f128a4b914747a697
[plomrogue] / src / client / map.h
1 /* src/client/map.h
2  *
3  * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4  * or any later version. For details on its copyright, license, and warranties,
5  * see the file NOTICE in the root directory of the PlomRogue source package.
6  *
7  * Routines for the game map window.
8  */
9
10 #ifndef MAP_H_CLIENT
11 #define MAP_H_CLIENT
12
13
14
15 /* Try changing map window's focus into direction "d" (north = "N" etc.). Unset
16  * world.focus_each_turn.
17  */
18 extern void map_scroll(char d);
19
20 /* Center map window on player (even if it is non-visible). */
21 extern void map_center();
22
23 /* Toggle world.focus_each_turn (auto-centering of map on player each turn). */
24 extern void toggle_autofocus();
25
26
27
28 #endif