Source:NetHack 1.3d/spell.h

From NetHackWiki
Jump to navigation Jump to search

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