diff --git a/include/coord.h b/include/coord.h new file mode 100644 index 000000000..bfcb1059d --- /dev/null +++ b/include/coord.h @@ -0,0 +1,12 @@ +/* SCCS Id: @(#)coord.h 3.3 90/02/22 */ +/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ +/* NetHack may be freely redistributed. See license for details. */ + +#ifndef COORD_H +#define COORD_H + +typedef struct nhcoord { + xchar x,y; +} coord; + +#endif /* COORD_H */