Initial revision
[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 #ifndef NOSOUND
21 #include <SDL_mixer.h>
22 #endif
23
24 SDL_Surface * screen;
25 SDL_Surface * letters_black, * letters_gold, * letters_blue, * letters_red;
26
27 int use_joystick, use_sound, use_fullscreen;
28
29 #ifdef JOY_YES
30 SDL_Joystick * js;
31 #endif
32
33 #endif /* GLOBALS_H */