Files
nethack/include/rect.h
nethack.allison 06528d1002 3.3.2 to 3.4.0
2002-02-04 16:06:00 +00:00

14 lines
282 B
C

/* SCCS Id: @(#)rect.h 3.4 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 */