Files
nethack/include/rect.h
2005-01-02 16:50:12 +00:00

14 lines
282 B
C

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