new editor image for infoblock
[supertux.git] / lib / app / globals.h
index 2894b2b..83d57ed 100644 (file)
 
 #include "SDL.h"
 
-#include "../video/font.h"
-#include "../gui/menu.h"
-#include "../gui/mousecursor.h"
+#include "video/font.h"
+#include "tinygettext.h"
 
 namespace SuperTux
   {
 
+  extern TinyGetText::DictionaryManager dictionary_manager;
+  extern TinyGetText::Dictionary* dictionary;
+  
+  class MouseCursor;
+
   extern std::string datadir;
   extern std::string package_symbol_name;
   extern std::string package_name;
@@ -63,6 +67,7 @@ namespace SuperTux
   extern bool use_fullscreen;
   extern bool debug_mode;
   extern bool show_fps;
+  extern bool debug_grid;
 
   /** The number of the joystick that will be use in the game */
   extern int joystick_num;
@@ -72,8 +77,8 @@ namespace SuperTux
   extern bool flip_levels_mode;
 
   /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
-  extern char* st_dir;
-  extern char* st_save_dir;
+  extern std::string st_dir;
+  extern std::string st_save_dir;
   
   extern SDL_Joystick * js;