Files
nethack/include/rect.h
2009-05-06 10:45:32 +00:00

15 lines
326 B
C

/* NetHack 3.5 rect.h $Date$ $Revision$ */
/* SCCS Id: @(#)rect.h 3.5 1990/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 */