Home | History | Annotate | Line # | Download | only in hack
def.gold.h revision 1.3
      1 /*
      2  * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
      3  *
      4  *	$NetBSD: def.gold.h,v 1.3 1995/03/23 08:29:27 cgd Exp $
      5  */
      6 
      7 struct gold {
      8 	struct gold *ngold;
      9 	xchar gx,gy;
     10 	long amount;
     11 };
     12 
     13 extern struct gold *fgold;
     14 struct gold *g_at();
     15 #define newgold()	(struct gold *) alloc(sizeof(struct gold))
     16