#ifndef __EXITNAMES_H__
#define __EXITNAMES_H__
/* $Id: exitnames.h,v 1.1 1993/12/18 14:37:14 vpopesc Exp $ */
/* $Log: exitnames.h,v $
* Revision 1.1 1993/12/18 14:37:14 vpopesc
* Initial revision
* */
char *Exits[] = {"North", "East",
"South", "West",
"Up", "Down",
"NorthEast", "NorthWest",
"SouthEast", "SouthWest",
TABLE_END
};
char *exits[] = {"north", "east",
"south", "west",
"up", "down",
"northeast", "northwest",
"southeast", "southwest",
TABLE_END
};
#endif /* Add nothing past this line... */