mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2024-11-21 16:55:06 +00:00
aac679c9eb
Both the PC and monsters can use MV_SCENT to smell targets around corners
17 lines
332 B
C
17 lines
332 B
C
/* SCCS Id: @(#)coord.h 3.4 1990/02/22 */
|
|
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
|
/* NetHack may be freely redistributed. See license for details. */
|
|
|
|
#ifndef COORD_H
|
|
#define COORD_H
|
|
|
|
typedef struct nhcoord {
|
|
xchar x,y;
|
|
} coord;
|
|
|
|
struct seekspot {
|
|
xchar x,y;
|
|
boolean found;
|
|
};
|
|
|
|
#endif /* COORD_H */
|