Wikihack
Advertisement

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.
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 /**/
Advertisement