(svn r2973) Move a function declaration somewhere where it belongs

pull/155/head
tron 19 years ago
parent 1da0edf8b9
commit a9bb8ef095

@ -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;

@ -0,0 +1,8 @@
/* $Id$ */
#ifndef DEFAULT_H
#define DEFAULT_H
void AiDoGameLoop(Player*);
#endif

@ -197,7 +197,6 @@ void ChangeOwnershipOfPlayerItems(PlayerID old_player, PlayerID new_player);
void GetNameOfOwner(PlayerID owner, TileIndex tile);
int64 CalculateCompanyValue(Player *p);
void InvalidatePlayerWindows(Player *p);
void AiDoGameLoop(Player *p);
void UpdatePlayerMoney32(Player *p);
#define FOR_ALL_PLAYERS(p) for(p=_players; p != endof(_players); p++)

Loading…
Cancel
Save