Files
fishtanks/src/Components/Team.h
T
2014-06-04 18:12:58 +02:00

18 lines
281 B
C++

#ifndef Components_Team_h__
#define Components_Team_h__
#include "Component.h"
#include "Entity.h"
namespace Components
{
struct Team : Component
{
unsigned int TeamID;
virtual Team* Clone() const override { return new Team(*this); }
};
}
#endif // !Components_Team_h__