#include "param.h" #include "vars.h" LEVEL Levels[N_LEVELS]; LOC *entrance; /* MONTYPE montypes[]; in montypes.c */ /* OBJTYPE objtypes[]; in objtypes.c */ MONST *you; /* int dispox and dispoy in display.c */ OBJ *map; TIME curtime; MONST *mchain; int mchain_count; LOC *seecell_loc; const int delta[8][2] = { { -1, -1 }, { -1, 0 }, { -1, 1 }, { 0, 1 }, { 1, 1 }, { 1, 0 }, { 1, -1 }, { 0, -1 } }; int Z_mad = 0;