00001 #ifndef _OPTIONS_H 00002 #define _OPTIONS_H 00003 00004 typedef struct { 00005 char *dir_savegame; 00006 char *dir_gamedata; 00007 int want_audio; 00008 int want_fullscreen; 00009 int want_intro; 00010 int want_cheats; 00011 int want_debug; 00012 } game_options; 00013 00014 extern game_options options; 00015 extern int setup_options(int argc, char ** argv); 00016 00017 #endif /* _OPTIONS_H */