Process Ball Transfer Packet

This commit is contained in:
2026-04-26 16:34:52 -04:00
parent 97021d0d4b
commit d79e73df8b

9
include/network/packet.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef GAME_PACKET_H
#define GAME_PACKET_H 1
#include "../game.h"
#include "../object.h"
int ProcessBallPacket(char* msg, Ball* ball, GameData* gd);
#endif