1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2024-09-19 14:05:02 +01:00
notnotdnethack/include/rect.h
Chris-plus-alphanumericgibberish 5901b7c7ca Uploading current NAO sources
Thanks, kerio!
2013-10-15 16:49:44 -04:00

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