OSDN Git Service

adjust for patch
[jnethack/source.git] / include / rect.h
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. */
4
5 #ifndef RECT_H
6 #define RECT_H
7
8 typedef struct nhrect {
9     xchar lx, ly;
10     xchar hx, hy;
11 } NhRect;
12
13 #endif /* RECT_H */