Huge code merge. This reflects the current status of my rewrite/restructuring. A...
[supertux.git] / src / setup.h
1 /*
2   setup.h
3   
4   Super Tux - Setup
5   
6   by Bill Kendrick
7   bill@newbreedsoftware.com
8   http://www.newbreedsoftware.com/supertux/
9   
10   April 11, 2000 - April 13, 2000
11 */
12
13 #if !defined( SUPERTUX_SETUP_H )
14 #define SUPERTUX_SETUP_H 1
15
16         #include "sound.h"
17
18         int faccessible(char *filename);
19         void st_directory_setup(void);
20         void st_general_setup(void);
21         void st_video_setup_sdl(void);
22         void st_video_setup_gl(void);
23         void st_video_setup(void);
24         void st_audio_setup(void);
25         void st_joystick_setup(void);
26         void st_shutdown(void);
27         void st_abort(char * reason, char * details);
28         void parseargs(int argc, char * argv[]);
29 #endif
30