X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=lib%2Fapp%2Fglobals.h;h=83d57edb855355a66d89d1bc8ca16666d25bb88d;hb=8e0bad9f82ccbc811a18edd7ce6c6f69c5bca082;hp=6de62d6787c8b07712ef34f35b0e1f6205bce403;hpb=6ed1900da4edf7d7922f7a4626f95a83e34dff82;p=supertux.git diff --git a/lib/app/globals.h b/lib/app/globals.h index 6de62d678..83d57edb8 100644 --- a/lib/app/globals.h +++ b/lib/app/globals.h @@ -26,13 +26,17 @@ #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,16 +67,18 @@ 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; extern char* level_startup_file; extern bool launch_leveleditor_mode; extern bool launch_worldmap_mode; + 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;