adding multiplayer

This commit is contained in:
2026-04-15 06:57:15 -07:00
parent af639e62c3
commit 3a91db6321
32 changed files with 938 additions and 174 deletions

View File

@@ -7,11 +7,13 @@ typedef struct {
const char* ip;
int port;
int id;
int socket;
} server_info;
typedef struct {
int socket;
server_info info;
server_info game_info;
server_info server_info;
int userCount;
}game_server;
int Connect(game_server* gs);