Source:NetHack 3.4.3/include/emin.h

From NetHackWiki
Revision as of 19:17, 31 January 2011 by Paxedbot (talk | contribs) (moved Source:Emin.h to Source:NetHack 3.4.3/include/emin.h: Moving src to subdirs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to include/emin.h from NetHack 3.4.3. To link to a particular line, write [[emin.h#line123]], for example.

/*	SCCS Id: @(#)emin.h	3.4	1997/05/01	*/
/* Copyright (c) David Cohrs, 1990.				  */
/* NetHack may be freely redistributed.  See license for details. */

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

#ifndef EMIN_H
#define EMIN_H

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

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

#endif /* EMIN_H */