#ifndef Component_h__ #define Component_h__ #include "GLM.h" #include "Factory.h" #include "Entity.h" struct Component { EntityID Entity; }; class ComponentFactory : public Factory { }; #endif // Component_h__