]> git.cameronkatri.com Git - bsdgames-darwin.git/blob - hack/def.wseg.h
curses needs termcap
[bsdgames-darwin.git] / hack / def.wseg.h
1 /*
2 * Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985.
3 *
4 * $NetBSD: def.wseg.h,v 1.3 1995/03/23 08:29:42 cgd Exp $
5 */
6
7 #ifndef NOWORM
8 /* worm structure */
9 struct wseg {
10 struct wseg *nseg;
11 xchar wx,wy;
12 unsigned wdispl:1;
13 };
14
15 #define newseg() (struct wseg *) alloc(sizeof(struct wseg))
16 #endif NOWORM