diff --git a/include/emin.h b/include/emin.h new file mode 100644 index 000000000..ccc0b4bf3 --- /dev/null +++ b/include/emin.h @@ -0,0 +1,14 @@ +/* SCCS Id: @(#)emin.h 3.3 97/05/01 */ +/* Copyright (c) David Cohrs, 1990. */ +/* NetHack may be freely redistributed. See license for details. */ + +#ifndef EMIN_H +#define EMIN_H + +struct emin { + aligntyp min_align; /* alignment of minion */ +}; + +#define EMIN(mon) ((struct emin *)&(mon)->mextra[0]) + +#endif /* EMIN_H */