Source:NetHack 2.2a/wseg.h

From NetHackWiki
Jump to navigation Jump to search

Below is the full text to wseg.h from the source code of NetHack 2.2a. To link to a particular line, write [[NetHack 2.2a/wseg.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

Screenshots and source code from Hack are used under the CWI license.

1.    /*	SCCS Id: @(#)wseg.h	1.4	87/08/08
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* wseg.h - version 1.0.2 */
4.    
5.    #ifndef NOWORM
6.    /* worm structure */
7.    struct wseg {
8.    	struct wseg *nseg;
9.    	xchar wx,wy;
10.   	Bitfield(wdispl,1);
11.   };
12.   
13.   #define newseg()	(struct wseg *) alloc(sizeof(struct wseg))
14.   #endif