(svn r2973) Move a function declaration somewhere where it belongs
This commit is contained in:
1
ai/ai.c
1
ai/ai.c
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
8
ai/default/default.h
Normal file
8
ai/default/default.h
Normal file
@@ -0,0 +1,8 @@
|
||||
/* $Id$ */
|
||||
|
||||
#ifndef DEFAULT_H
|
||||
#define DEFAULT_H
|
||||
|
||||
void AiDoGameLoop(Player*);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user