Source:Emin.h
From Wikihack
(Redirected from Emin.h)
Below is the full text to include/emin.h from NetHack 3.4.3. To link to a particular line, write [[emin.h#line123]], for example.
1. /* SCCS Id: @(#)emin.h 3.4 1997/05/01 */ 2. /* Copyright (c) David Cohrs, 1990. */ 3. /* NetHack may be freely redistributed. See license for details. */ 4.
| The NetHack General Public License applies to screenshots, source code and other content from NetHack. |
5. #ifndef EMIN_H 6. #define EMIN_H 7. 8. struct emin { 9. aligntyp min_align; /* alignment of minion */ 10. }; 11. 12. #define EMIN(mon) ((struct emin *)&(mon)->mextra[0]) 13. 14. #endif /* EMIN_H */
