1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2024-09-19 14:05:02 +01:00
notnotdnethack/include/coord.h
Chris-plus-alphanumericgibberish aac679c9eb Do scent
Both the PC and monsters can use MV_SCENT to smell targets around corners
2016-10-06 03:10:38 -04:00

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