diff --git a/include/rect.h b/include/rect.h new file mode 100644 index 000000000..1ebd909e7 --- /dev/null +++ b/include/rect.h @@ -0,0 +1,13 @@ +/* SCCS Id: @(#)rect.h 3.3 90/02/22 */ +/* Copyright (c) 1990 by Jean-Christophe Collet */ +/* NetHack may be freely redistributed. See license for details. */ + +#ifndef RECT_H +#define RECT_H + +typedef struct nhrect { + xchar lx, ly; + xchar hx, hy; +} NhRect; + +#endif /* RECT_H */