more gameplay improvements. level-editor is getting closer to a useable state . etc.
[supertux.git] / src / globals.c
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 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
21 char *st_dir, *st_save_dir;
22
23 #ifdef JOY_YES
24 SDL_Joystick * js;
25 #endif
26
27