Move some more globals to supertux/globals.hpp
[supertux.git] / src / supertux / globals.cpp
index a89efb1..4435959 100644 (file)
@@ -19,7 +19,7 @@
 
 SDL_Surface* g_screen;
 JoystickKeyboardController* g_main_controller = 0;
-tinygettext::DictionaryManager dictionary_manager;
+tinygettext::DictionaryManager* dictionary_manager = 0;
 
 int SCREEN_WIDTH;
 int SCREEN_HEIGHT;
@@ -35,4 +35,11 @@ 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 */