/* $Id$ */ /** @file ai.h declaration of functions for the AI system */ #ifndef AI_H #define AI_H // ai.c void AI_StartNewAI(PlayerID player); void AI_PlayerDied(PlayerID player); void AI_RunGameLoop(); void AI_Initialize(); void AI_Uninitialize(); bool AI_AllowNewAI(); #endif /* AI_H */