Implemented --help and --disable-sound (patch by Duong-Khang NGUYEN <neoneurone@users...
[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 GLOBALS_H
15 #define GLOBALS_H
16
17 #include <SDL.h>
18 #include <SDL_image.h>
19
20 SDL_Surface * screen;
21 SDL_Surface * letters_black, * letters_gold, * letters_blue, * letters_red;
22
23 int use_joystick, use_sound, use_fullscreen;
24
25 #ifdef JOY_YES
26 SDL_Joystick * js;
27 #endif
28
29 #endif /* GLOBALS_H */