home · contact · privacy
7DRL: Some population balancing.
[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 #include <stdint.h> /* uint8_t */
14
15
16 /* Toggle world.look (moving look cursor instead of player over map). */
17 extern void toggle_lookmode();
18
19 /* Read "command" as look cursor move command, act on it.*/
20 extern uint8_t lookmode_nav(char * command);
21
22 /* Send THINGS_HERE query message to server.*/
23 extern void query_mapcell();
24
25
26
27 #endif