home · contact · privacy
87af27e0b8d97e1a561b8cb9a71b1433c6297397
[plomrogue] / src / server / god_commands.h
1 /* src/server/god_commands.h
2  *
3  * God commands and their interpretation by the server.
4  */
5
6
7
8 #ifndef GOD_COMMANDS_H
9 #define GOD_COMMANDS_H
10
11 #include <stdint.h> /* uint8_t */
12
13
14 /* Parse/apply god command "tok0" with argument "tok1". */
15 extern uint8_t parse_god_command_1arg(char * tok1, char * tok2);
16
17
18
19 #endif