freebsd-dev/games/hack/def.wseg.h
2002-05-23 00:38:07 +00:00

15 lines
307 B
C

/* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
/* def.wseg.h - version 1.0.2 */
/* $FreeBSD$ */
#ifndef NOWORM
/* worm structure */
struct wseg {
struct wseg *nseg;
xchar wx,wy;
unsigned wdispl:1;
};
#define newseg() (struct wseg *) alloc(sizeof(struct wseg))
#endif /* NOWORM */