improve visual clarity

This commit is contained in:
jazz
2026-04-15 22:18:32 -05:00
parent bc996f6ca1
commit 2004f084be
5 changed files with 90 additions and 58 deletions

View File

@@ -7,6 +7,7 @@ using namespace std;
typedef enum { NO_MODE = 0, SERVER_MODE = 1, CLIENT_MODE = 2 } chatmode_t;
extern int width, height;
extern chatmode_t mode;
extern int PORT_NUM;
extern string IP_ADDRESS;
@@ -27,4 +28,7 @@ void *waitForClient(void *argss);
void *pollForClient();
void *pollForSever(void *args);
#define movetobox() \
move(height - 2, 7)
#endif