# HG changeset patch # User rubidium # Date 2011-02-07 22:15:46 # Node ID fce9f3d3fb3fe81eb3f87dae8f20e2ee043270d7 # Parent a75c87f7e037afe881622724f27e07d7583ac238 (svn r22014) -Codechange: move some more functions out of functions.h diff --git a/src/functions.h b/src/functions.h --- 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 --- a/src/openttd.h +++ b/src/openttd.h @@ -66,4 +66,10 @@ typedef SimpleTinyEnumT /** The current pause mode */ extern PauseModeByte _pause_mode; +void AskExitGame(); +void AskExitToGameMenu(); + +int ttd_main(int argc, char *argv[]); +void HandleExitGameRequest(); + #endif /* OPENTTD_H */