First round of cleanup up the AddonManager a bit
[supertux.git] / src / supertux / globals.cpp
index 22a7311..d6d4d75 100644 (file)
@@ -1,5 +1,5 @@
 //  SuperTux
-//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
+//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmail.com>
 //
 //  This program is free software: you can redistribute it and/or modify
 //  it under the terms of the GNU General Public License as published by
 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 #include "supertux/globals.hpp"
-#include "tinygettext/tinygettext.hpp"
 
-SDL_Surface* g_screen;
-JoystickKeyboardController* g_main_controller = 0;
-tinygettext::DictionaryManager dictionary_manager;
+#include <tinygettext/tinygettext.hpp>
+
+#include "supertux/gameconfig.hpp"
 
 int SCREEN_WIDTH;
 int SCREEN_HEIGHT;
 
+std::unique_ptr<Config> g_config;
+
+float game_time = 0;
+float real_time = 0;
+
+TileSet* current_tileset = NULL;
+
+float g_game_speed = 1.0f;
+
 /* EOF */