14 lines
327 B
C
14 lines
327 B
C
/* NetHack 3.5 coord.h $Date$ $Revision$ */
|
|
/* SCCS Id: @(#)coord.h 3.5 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;
|
|
|
|
#endif /* COORD_H */
|