mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-08 23:49:42 +00:00
12 lines
196 B
C++
12 lines
196 B
C++
#ifndef PLAYERCLIENTDATA_H
|
|
#define PLAYERCLIENTDATA_H
|
|
#include <player.h>
|
|
|
|
class PlayerClientData: public ClientProtocol::Player
|
|
{
|
|
public:
|
|
PlayerClientData();
|
|
};
|
|
|
|
#endif // PLAYERCLIENTDATA_H
|