Difference between revisions of "Source:NetHack 1.3d/spell.h"

From NetHackWiki
Jump to navigation Jump to search
m (Automated source code upload)
 
m (NetHack 1.3d/spell.h moved to Source:NetHack 1.3d/spell.h: Robot: moved page)
 
(No difference)

Latest revision as of 00:29, 4 March 2008

Below is the full text to spell.h from the source code of NetHack 1.3d. To link to a particular line, write [[NetHack 1.3d/spell.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: @(#)spell.h	1.3	87/07/14
2.    /* def.spells.h - version 1.0.0		M. Stephenson  07-07-86 */
3.    
4.    #ifndef SPELL_H
5.    #define SPELL_H
6.    
7.    struct	spell  {
8.    
9.    	int	sp_id;			/* spell id */
10.   	int	sp_lev;			/* power level */
11.   	int	sp_flags;		/* spfx flags */
12.   };
13.   
14.   #endif