554eb505f8
of the x11 based games. I'm not going to tag the originals with bsd_44_lite and do this in two stages since it's just not worth it for this collection, and I've got directory renames to deal with that way. Bleah. Submitted by: jkh
13 lines
279 B
C
13 lines
279 B
C
/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
|
|
/* def.gold.h - version 1.0.2 */
|
|
|
|
struct gold {
|
|
struct gold *ngold;
|
|
xchar gx,gy;
|
|
long amount;
|
|
};
|
|
|
|
extern struct gold *fgold;
|
|
struct gold *g_at();
|
|
#define newgold() (struct gold *) alloc(sizeof(struct gold))
|