From a8d7c5c10338c2cbc71ee5bfe5193cc9de7c83e8 Mon Sep 17 00:00:00 2001 From: jwalz Date: Sat, 5 Jan 2002 21:05:48 +0000 Subject: [PATCH] *** empty log message *** --- include/rect.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/rect.h 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 */