Court and Player Number

This commit is contained in:
2026-04-24 15:44:16 -04:00
commit fdc6dd2004
5 changed files with 150 additions and 0 deletions

22
game.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef GAME_H
#define GAME_H 1
// Setup game board
#define TOP_ROW 4
#define BOT_ROW 21
#define LEFT_COL 9
#define RIGHT_COL 70
struct GameData
{
int playerNumber;
char* domain;
int port;
};
void DrawWalls(struct GameData);
void DrawHeader(struct GameData);
#endif