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

4
main.c
View File

@@ -5,6 +5,7 @@
#include <input.h>
#include <overworld.h>
#include <host.h>
#include <options.h>
#include <mydebug.h>
#include <SDL2/SDL.h>
@@ -47,6 +48,7 @@ int main(void)
init_join();
init_host();
init_overworld();
init_options();
running = 1;
@@ -72,7 +74,7 @@ int main(void)
render_join_game();
break;
case OPTIONS:
show_options();
render_options();
break;
case TITLE:
render_mainmenu();