File: coord.h

package info (click to toggle)
jnethack 1.1.5-18
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,992 kB
  • ctags: 14,991
  • sloc: ansic: 163,971; asm: 2,412; yacc: 2,002; lex: 412; sh: 179; makefile: 57
file content (12 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
/*	SCCS Id: @(#)coord.h	3.2	90/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 {
	xchar x,y;
} coord;

#endif /* COORD_H */