Wikihack
Advertisement

Below is the full text to gold.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/gold.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: @(#)gold.h	3.0	88/08/08
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifndef GOLD_H
6.    #define GOLD_H
7.    
8.    struct gold {
9.    	struct gold *ngold;
10.   	xchar gx,gy;
11.   	long amount;
12.   };
13.   
14.   extern struct gold *fgold;
15.   #define newgold()	(struct gold *) alloc(sizeof(struct gold))
16.   
17.   #endif /* GOLD_H /**/
Advertisement