20ad5e620d5fdd163b2b17b2ea5d39ce7fdc383c
[supertux.git] / src / globals.cpp
1 //
2 // C Implementation: globals
3 //
4 // Description:
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #include "globals.h"
14
15 SDL_Surface * screen;
16 text_type black_text, gold_text, blue_text, red_text, yellow_nums, white_text, white_small_text, white_big_text;
17
18 int use_gl, use_joystick, use_fullscreen, debug_mode, show_fps;
19
20 char* level_startup_file = 0;
21 bool launch_worldmap_mode = false;
22
23 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
24 char *st_dir, *st_save_dir;
25
26 #ifdef JOY_YES
27 SDL_Joystick * js;
28 #endif
29
30