home · contact · privacy
License everything (GPL).
[plomrogue] / src / server / god_commands.h
1 /* src/server/god_commands.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  * God commands and their interpretation by the server.
8  */
9
10 #ifndef GOD_COMMANDS_H
11 #define GOD_COMMANDS_H
12
13 #include <stdint.h> /* uint8_t */
14
15
16
17 /* Parse/apply god command "tok0" with argument "tok1", "tok2" etc. . */
18 extern uint8_t parse_god_command_1arg(char * tok0, char * tok1);
19 extern uint8_t parse_god_command_2arg(char * tok0, char * tok1, char * tok2);
20 extern uint8_t parse_god_command_3arg(char * tok0, char * tok1, char * tok2,
21                                       char * tok3);
22
23
24
25 #endif