ULRE/inc/hgl/component/PrimitiveComponent.h

20 lines
432 B
C
Raw Normal View History

#pragma once
#include<hgl/component/RenderComponent.h>
COMPONENT_NAMESPACE_BEGIN
/**
* <br>
*
*/
class PrimitiveComponent:public RenderComponent
{
public:
PrimitiveComponent()=default;
virtual ~PrimitiveComponent()=default;
};//class PrimitiveComponent
COMPONENT_NAMESPACE_END