(svn r22014) -Codechange: move some more functions out of functions.h

This commit is contained in:
rubidium 2011-02-07 22:15:46 +00:00
parent 750d369a2a
commit ec9e0690eb
2 changed files with 6 additions and 6 deletions

View File

@ -26,10 +26,4 @@ void MarkTileDirtyByTile(TileIndex tile);
void ShowCostOrIncomeAnimation(int x, int y, int z, Money cost);
void ShowFeederIncomeAnimation(int x, int y, int z, Money cost);
void AskExitGame();
void AskExitToGameMenu();
int ttd_main(int argc, char *argv[]);
void HandleExitGameRequest();
#endif /* FUNCTIONS_H */

View File

@ -66,4 +66,10 @@ typedef SimpleTinyEnumT<PauseMode, byte> PauseModeByte;
/** The current pause mode */
extern PauseModeByte _pause_mode;
void AskExitGame();
void AskExitToGameMenu();
int ttd_main(int argc, char *argv[]);
void HandleExitGameRequest();
#endif /* OPENTTD_H */