diff options
Diffstat (limited to 'ai')
-rw-r--r-- | ai/ai.c | 1 | ||||
-rw-r--r-- | ai/default/default.c | 1 | ||||
-rw-r--r-- | ai/default/default.h | 8 |
3 files changed, 10 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include "../command.h" #include "../network.h" #include "ai.h" +#include "default/default.h" /** * Dequeues commands put in the queue via AI_PutCommandInQueue. diff --git a/ai/default/default.c b/ai/default/default.c index 0fb4a3817..8257b0026 100644 --- a/ai/default/default.c +++ b/ai/default/default.c @@ -17,6 +17,7 @@ #include "../../airport.h" #include "../../depot.h" #include "../../variables.h" +#include "default.h" // remove some day perhaps? static Player *_cur_ai_player; diff --git a/ai/default/default.h b/ai/default/default.h new file mode 100644 index 000000000..d367d4a72 --- /dev/null +++ b/ai/default/default.h @@ -0,0 +1,8 @@ +/* $Id$ */ + +#ifndef DEFAULT_H +#define DEFAULT_H + +void AiDoGameLoop(Player*); + +#endif |