Yet another huge code merge representing the current status of my rewrite. It include...
[supertux.git] / src / globals.h
1 /*
2   globals.h
3   
4   Super Tux - Global Variabls
5   
6   by Bill Kendrick
7   bill@newbreedsoftware.com
8   http://www.newbreedsoftware.com/supertux/
9   
10   April 11, 2000 - April 21, 2000
11 */
12
13
14 #ifndef SUPERTUX_GLOBALS_H
15 #define SUPERTUX_GLOBALS_H
16
17 #include <SDL.h>
18 #include "text.h"
19
20 SDL_Surface * screen;
21 text_type black_text, gold_text, blue_text, red_text;
22
23 int use_gl, use_joystick, use_fullscreen, debug_mode, show_fps;
24
25 int game_started, level_editor_started;
26
27 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
28 char *st_dir, *st_save_dir;
29
30 #ifdef JOY_YES
31 SDL_Joystick * js;
32 #endif
33
34 #endif /* SUPERTUX_GLOBALS_H */