*** empty log message ***

This commit is contained in:
jwalz
2002-01-05 21:05:48 +00:00
parent 2adb82f67d
commit a8d7c5c103

13
include/rect.h Normal file
View File

@@ -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 */