home · contact · privacy
d9b1558b48f26568efa126d1705e26ca43d9b9df
[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", "tok2" etc. . */
15 extern uint8_t parse_god_command_1arg(char * tok0, char * tok1);
16 extern uint8_t parse_god_command_2arg(char * tok0, char * tok1, char * tok2);
17
18
19
20 #endif