(svn r9428) [NoAI] -Fix: FindBestRoadVehicle returned always INVALID_ENGINE. It is more useful to return best_engine ;)
/* $Id$ */
/** @file ai_threads.h declaration of functions for the AI threading system */
#ifndef AI_THREADS_H
#define AI_THREADS_H
class AIController;
void AI_StartPlayer(PlayerID player, AIController *controller);
void AI_SuspendPlayer(PlayerID player, int timeout);
void AI_RunTick(PlayerID player);
void AI_StopPlayer(PlayerID player);
bool AI_GetCallbackResult(PlayerID player);
#endif /* AI_THREADS_H */