/* v0.8 * * eng.h: Engineering module header. * * This program is free software and may be freely redistributed as * specified in the GNU General Public License. Please see the file * 'COPYING' for details. */ /* battery status values */ #define BTTY_OFFLINE '0' #define BTTY_ONLINE '1' #define BTTY_DAMAGED '2' extern void engTacticalTurn(TAG *); extern void engSetReactor(TAG *, dbref, int); extern void engAllocate(TAG *, dbref, int, int, int, int); extern void engAllocCheck(TAG *); extern void engBatteryOn(TAG *, dbref); extern void engBatteryOff(TAG *, dbref); extern void engStartReactor(TAG *, dbref, dbref); extern void engShutdownReactor(TAG *, dbref); extern void engSetReactorOutput(TAG *, dbref, int);