//Troy Rosin #ifndef __options_h__ #define __options_h__ //gameplay, video, audio, mainmenu, exit game #define NUM_OPTIONS 5 #define GP_OPT_SEL 0 #define VID_OPT_SEL 1 #define AUD_OPT_SEL 2 #define MM_OPT_SEL 3 #define EXT_OPT_SEL 4 void init_options(); void render_options(); int get_sel_opt(); void set_sel_opt(int); #endif