Files
fishtanks/src/Components/Player.h
T
ViktorLjung 609687d6b4 MULTIPLAYER
2014-05-20 01:43:59 +02:00

21 lines
247 B
C++

#ifndef Player_h__
#define Player_h__
#include "Component.h"
namespace Components
{
struct Player : Component
{
Player()
: ID(0) { }
int ID;
virtual Player* Clone() const override { return new Player(*this); }
};
}
#endif // Player_h__