mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2024-11-24 10:15:12 +00:00
5901b7c7ca
Thanks, kerio!
13 lines
282 B
C
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 */
|