19 lines
462 B
C
19 lines
462 B
C
#ifndef r_mydirs_h
|
|
#define r_mydirs_h
|
|
|
|
|
|
#define MY_DIR "/realms/babylon"
|
|
#define MY_CMDS MY_DIR "/cmds"
|
|
#define MY_LOG MY_DIR "/log"
|
|
#define MY_AREA MY_DIR "/area"
|
|
#define MY_WEAP MY_AREA "/weap"
|
|
#define MY_ROOM MY_AREA "/room"
|
|
#define MY_OBJ MY_AREA "/obj"
|
|
#define MY_ARMOR MY_AREA "/armor"
|
|
#define MY_NPC MY_AREA "/npc"
|
|
#define MY_DOORS MY_AREA "/doors"
|
|
#define MY_MEALS MY_AREA "/meals"
|
|
#define MY_ETC MY_AREA "/etc"
|
|
|
|
#endif /* r_mydirs_h */
|