dumplog's saved_plines[]
[aNetHack.git] / include / rect.h
blobefbf253d59f35e85be9fbed4ddd73277940ef92a
1 /* NetHack 3.6 rect.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
2 /* Copyright (c) 1990 by Jean-Christophe Collet */
3 /* NetHack may be freely redistributed. See license for details. */
5 #ifndef RECT_H
6 #define RECT_H
8 typedef struct nhrect {
9 xchar lx, ly;
10 xchar hx, hy;
11 } NhRect;
13 #endif /* RECT_H */