Files
netpong/include/network/packet.h

9 lines
159 B
C

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