home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d008 / hack.lha / src / def.wseg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-01-18  |  261 b   |  13 lines

  1. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1984. */
  2.  
  3. #ifndef NOWORM
  4. /* worm structure */
  5. struct wseg {
  6.    struct wseg *nseg;
  7.    xchar wx,wy;
  8.    Bitfield(wdispl,1);
  9. };
  10.  
  11. #define newseg()   (struct wseg *) alloc(sizeof(struct wseg))
  12. #endif NOWORM
  13.