Working Server and Client

This commit is contained in:
2026-04-26 12:14:31 -04:00
parent 4cdda5c53a
commit 81488417d9
6 changed files with 248 additions and 25 deletions

9
game.h
View File

@@ -7,16 +7,17 @@
#define LEFT_COL 9
#define RIGHT_COL 70
struct GameData
typedef struct
{
int host;
int playerNumber;
char* domain;
int port;
};
} GameData;
void DrawWalls(struct GameData);
void DrawHeader(struct GameData);
void DrawWalls(GameData);
void DrawHeader(GameData);
#endif