Source:NetHack 3.0.0/wseg.h

From NetHackWiki
Revision as of 05:52, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.0.0/wseg.h moved to Source:NetHack 3.0.0/wseg.h: Robot: moved page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

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

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)wseg.h	3.0	88/10/15
2.    /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    /* wseg.h - version 1.0.2 */
5.    
6.    #ifndef WSEG_H
7.    #define WSEG_H
8.    
9.    # ifdef WORM
10.   /* worm structure */
11.   struct wseg {
12.   	struct wseg *nseg;
13.   	xchar wx,wy;
14.   	Bitfield(wdispl,1);
15.   };
16.   
17.   #define newseg()	(struct wseg *) alloc(sizeof(struct wseg))
18.   
19.   extern struct wseg *wsegs[32], *wheads[32], *m_atseg;
20.   extern long wgrowtime[32];
21.   
22.   # endif
23.   
24.   #endif /* WSEG_H /**/