1 /* src/server/god_commands.h
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.
7 * God commands and their interpretation by the server.
10 #ifndef GOD_COMMANDS_H
11 #define GOD_COMMANDS_H
13 #include <stdint.h> /* uint8_t */
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,