- added level starting from command line thingy
[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 - March 15, 2004
11 */
12
13
14 #ifndef SUPERTUX_GLOBALS_H
15 #define SUPERTUX_GLOBALS_H
16
17 #include <SDL.h>
18 #include "text.h"
19 #include "menu.h"
20
21 extern SDL_Surface * screen;
22 extern text_type black_text, gold_text, white_text, white_small_text, white_big_text, blue_text, red_text, yellow_nums;
23
24 extern int use_gl, use_joystick, use_fullscreen, debug_mode, show_fps;
25
26 extern char* level_startup_file;
27 extern bool launch_worldmap_mode;
28
29 /* SuperTux directory ($HOME/.supertux) and save directory($HOME/.supertux/save) */
30 extern char *st_dir, *st_save_dir;
31
32 #ifdef JOY_YES
33 extern SDL_Joystick * js;
34 #endif
35
36 #endif /* SUPERTUX_GLOBALS_H */