summaryrefslogtreecommitdiff
path: root/ai/ai.h
diff options
context:
space:
mode:
Diffstat (limited to 'ai/ai.h')
-rw-r--r--ai/ai.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ai/ai.h b/ai/ai.h
index 97a70b529..af55f6506 100644
--- a/ai/ai.h
+++ b/ai/ai.h
@@ -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;