File: emin.h

package info (click to toggle)
jnethack 1.1.5-21
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,000 kB
  • ctags: 14,991
  • sloc: ansic: 163,971; asm: 2,412; yacc: 2,002; lex: 412; sh: 179; makefile: 58
file content (18 lines) | stat: -rw-r--r-- 366 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*	SCCS Id: @(#)emin.h	3.2	90/12/15	*/
/* Copyright (c) David Cohrs, 1990.				  */
/* NetHack may be freely redistributed.  See license for details. */

#ifndef EMIN_H
#define EMIN_H

#ifndef ALIGN_H
#include "align.h"
#endif

struct emin {
	aligntyp	min_align;	/* alignment of minion */
};

#define EMIN(mon)	((struct emin *)&(mon)->mextra[0])

#endif /* EMIN_H */