/* This file contains information common to all files */ /* in this directory which may be subject to change. */ /* There should be a command at the very start of all */ /* other files '#include "path.h"'. This copies the */ /* contents of this file into it before it is compiled. */ #define ITEMPATH "/d/learning/newbie/" #define ROOMPATH "/d/learning/newbie/" #define MONSTERPATH "/d/learning/newbie/" /* The #define command causes the compiler to replace all */ /* incidences of the first parameter, for example */ /* ITEMPATH with the second, "/d/learning" just before */ /* a file is compiled. */ /* The advantage of doing this is, that if all the files */ /* in the directory "/d/learning" were to be moved */ /* elsewhere, only this file would have to be altered. */