(svn r3244) -Fix: [GPMI] Even more GPMI based AI-code cleanup, bug fixes, and you can now control the AI that is going to boot

This commit is contained in:
truelight
2005-11-28 14:02:36 +00:00
parent 4624bf7f9c
commit 4c76c9a45a
2 changed files with 71 additions and 10 deletions

View File

@@ -40,6 +40,10 @@ typedef struct AIStruct {
uint8 network_playas; //! The current network player we are connected as
bool gpmi; //! True if we want GPMI AIs
#ifdef GPMI
gpmi_module *gpmi_mod; //! The module controller for GPMI based AIs (Event-handling)
gpmi_package *gpmi_pkg; //! The package controller for GPMI based AIs (Functions)
#endif /* GPMI */
} AIStruct;
VARDEF AIStruct _ai;