summaryrefslogtreecommitdiffstats
path: root/hack/def.gold.h
blob: 426783f2f4d1e3fe53653fa7f19b9e1bc25bef7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*	$NetBSD: def.gold.h,v 1.4 1997/10/19 16:57:03 christos Exp $	*/

/*
 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
 */
#ifndef _DEF_GOLD_H_
#define _DEF_GOLD_H_
struct gold {
	struct gold *ngold;
	xchar gx,gy;
	long amount;
};

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