A brandnew MENU!
[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
19 SDL_Surface * screen;
20 SDL_Surface * letters_black, * letters_gold, * letters_blue, * letters_red;
21
22 int use_joystick, use_fullscreen;
23
24 int game_started;
25
26 #ifdef JOY_YES
27 SDL_Joystick * js;
28 #endif
29
30 #endif /* SUPERTUX_GLOBALS_H */