home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / HACKSRC.ZIP / GOLD.H < prev    next >
C/C++ Source or Header  |  1985-10-16  |  287b  |  13 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  2. /* gold.h - version 1.0.2 */
  3.  
  4. struct gold {
  5.     struct gold *ngold;
  6.     xchar gx,gy;
  7.     long amount;
  8. };
  9.  
  10. extern struct gold *fgold;
  11. struct gold *g_at();
  12. #define newgold()    (struct gold *) alloc(sizeof(struct gold))
  13.