MFC: following 2 commits:
[dragonfly.git] / games / hack / def.gold.h
blob9bef52ddf1b8558d18a54adb721f0d3869cf2d9f
1 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
2 /* def.gold.h - version 1.0.2 */
3 /* $DragonFly: src/games/hack/def.gold.h,v 1.2 2006/08/21 19:45:32 pavalos Exp $ */
5 struct gold {
6 struct gold *ngold;
7 xchar gx,gy;
8 long amount;
9 };
11 extern struct gold *fgold;
12 #define newgold() (struct gold *) alloc(sizeof(struct gold))