Files
nethack/include/rect.h
2002-01-05 21:05:48 +00:00

14 lines
280 B
C

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