added being able to create a host on the game server now need to work on joining that game

This commit is contained in:
2026-02-06 16:36:13 -06:00
parent 468ab94aa7
commit b2fa3052f3
23 changed files with 432 additions and 326 deletions

22
include/options.h Normal file
View File

@@ -0,0 +1,22 @@
//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