From ec9e0690eb33e3c66cc7c92054110e630d0827ff Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 7 Feb 2011 22:15:46 +0000 Subject: [PATCH] (svn r22014) -Codechange: move some more functions out of functions.h --- src/functions.h | 6 ------ src/openttd.h | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/functions.h b/src/functions.h index 656237a7b6..da7e21c193 100644 --- a/src/functions.h +++ b/src/functions.h @@ -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 */ diff --git a/src/openttd.h b/src/openttd.h index 3a3180036c..cd1f1c3412 100644 --- a/src/openttd.h +++ b/src/openttd.h @@ -66,4 +66,10 @@ typedef SimpleTinyEnumT 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 */