14 lines
363 B
C
14 lines
363 B
C
/* NetHack 3.6 rect.h $NHDT-Date: 1432512778 2015/05/25 00:12:58 $ $NHDT-Branch: master $:$NHDT-Revision: 1.8 $ */
|
|
/* 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 */
|