X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsupertux%2Fglobals.cpp;h=e67c243f813672fcffdd6becfbfed6efd90fd340;hb=08bddcf4d4fbe2edf9a0078dc6f3c3275ef05302;hp=22a73117595f2897abd2ac65f0908bed8505e01f;hpb=78ac7aef674f518549f96160c6354b589553f952;p=supertux.git diff --git a/src/supertux/globals.cpp b/src/supertux/globals.cpp index 22a731175..e67c243f8 100644 --- a/src/supertux/globals.cpp +++ b/src/supertux/globals.cpp @@ -15,13 +15,31 @@ // along with this program. If not, see . #include "supertux/globals.hpp" -#include "tinygettext/tinygettext.hpp" +#include SDL_Surface* g_screen; -JoystickKeyboardController* g_main_controller = 0; -tinygettext::DictionaryManager dictionary_manager; +JoystickKeyboardController* g_jk_controller = 0; +tinygettext::DictionaryManager* dictionary_manager = 0; int SCREEN_WIDTH; int SCREEN_HEIGHT; +ScreenManager* g_screen_manager = 0; + +TextureManager* texture_manager = 0; + +SoundManager* sound_manager = 0; + +Config* g_config = 0; + +float game_time = 0; +float real_time = 0; + +TileManager* tile_manager = NULL; +TileSet* current_tileset = NULL; + +SpriteManager* sprite_manager = NULL; + +float g_game_speed = 1.0f; + /* EOF */