aboutsummaryrefslogtreecommitdiff
path: root/hack/def.gold.h
blob: c279a459916aa0972b97673d03247f17d00e12e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* def.gold.h - version 1.0.2 */
/* $DragonFly: src/games/hack/def.gold.h,v 1.2 2006/08/21 19:45:32 pavalos Exp $ */

struct gold {
	struct gold *ngold;
	xchar gx,gy;
	long amount;
};

extern struct gold *fgold;
#define	newgold()	alloc(sizeof(struct gold))