Fully Working Game

This commit is contained in:
2026-04-26 18:39:43 -04:00
parent ab35c9216e
commit 5c2bb282ce
9 changed files with 334 additions and 119 deletions

View File

@@ -5,5 +5,12 @@
#include "../object.h"
int ProcessBallPacket(char* msg, Ball* ball, GameData* gd);
int ProcessAlert(char* msg);
int ProcessGMSG(char* msg);
int ProcessScore(char* msg, int* scores);
int ProcessBallLost(char* msg, int fd, GameData* gd, int* scores, int* allowSever, int numOfBalls);
int ProcessNumOfBalls(char* msg, int* numOfBalls);
void SendGameStatus(int fd, char* msg);
#endif