home · contact · privacy
Server: Merge duplicate string literals of "sprintf()".
[plomrogue] / src / server / hardcoded_strings.h
1 /* hardcoded_strings.h
2  *
3  * For re-used hardcoded strings.
4  */
5
6 #ifndef STRINGS_H
7 #define STRINGS_H
8
9
10
11 enum string_num
12 {
13     S_PATH_CONFIG,
14     S_PATH_WORLDSTATE,
15     S_PATH_OUT,
16     S_PATH_IN,
17     S_PATH_RECORD,
18     S_PATH_SUFFIX_TMP,
19     S_PATH_SAVE,
20     S_CMD_MAKE_WORLD,
21     S_CMD_DO_FOV,
22     S_CMD_SEED_MAP,
23     S_CMD_SEED_RAND,
24     S_CMD_TURN,
25     S_CMD_THING,
26     S_CMD_TYPE,
27     S_CMD_POS_Y,
28     S_CMD_POS_X,
29     S_CMD_COMMAND,
30     S_CMD_ARGUMENT,
31     S_CMD_PROGRESS,
32     S_CMD_LIFEPOINTS,
33     S_CMD_CARRIES,
34     S_CMD_WAIT,
35     S_CMD_MOVE,
36     S_CMD_PICKUP,
37     S_CMD_DROP,
38     S_CMD_USE,
39     S_FCN_SPRINTF
40 };
41
42 extern void init_strings();
43
44 extern char * s[27];
45
46
47
48 #endif