summaryrefslogtreecommitdiffstats
path: root/src/Entities/Compoments/Component.h
blob: 3d7ebccaa4825515095a284a642b459d181df57d (plain) (blame)
1
2
3
4
5
6
7
8
9
#include "Entity.h"

class cComponent
{
protected:
	cEntity * m_Self;
public:
	cComponent(cEntity * a_Entity) : m_Self(a_Entity){}
};