Source:NetHack 3.0.0/epri.h

From NetHackWiki
(Redirected from NetHack 3.0.0/epri.h)
Jump to navigation Jump to search

Below is the full text to epri.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/epri.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

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.

1.    /*	SCCS Id: @(#)epri.h	3.0	88/04/25
2.    /* 	Copyright (c) 	Izchak Miller, 1989. 		*/
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifndef EPRI_H
6.    #define EPRI_H
7.    
8.    #if defined(ALTARS) && defined(THEOLOGY)
9.    struct epri {
10.   	schar shroom;		/* index in rooms */
11.   	schar shralign;		/* alignment of priest's shrine */
12.   	coord shrpos;		/* position of shrine */
13.   	int shrlevel;		/* level of shrine */
14.   	boolean ismale;
15.   	char deitynam[PL_NSIZ];
16.   };
17.   
18.   #define	EPRI(mon)	((struct epri *)(&(mon->mextra[0])))
19.   #endif
20.   
21.   #endif /* EPRI_H /**/