2025-03-18 01:26:35 +08:00
|
|
|
#pragma once
|
|
|
|
|
2025-06-14 21:05:36 +08:00
|
|
|
#include<hgl/component/PrimitiveComponent.h>
|
2025-03-18 01:26:35 +08:00
|
|
|
|
2025-03-25 02:19:32 +08:00
|
|
|
COMPONENT_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 可渲染组件
|
|
|
|
*/
|
2025-06-14 21:05:36 +08:00
|
|
|
class RenderComponent:public PrimitiveComponent
|
2025-03-18 01:26:35 +08:00
|
|
|
{
|
2025-03-25 02:19:32 +08:00
|
|
|
public:
|
2025-03-18 01:26:35 +08:00
|
|
|
|
2025-06-14 21:05:36 +08:00
|
|
|
using PrimitiveComponent::PrimitiveComponent;
|
2025-03-25 02:19:32 +08:00
|
|
|
virtual ~RenderComponent()=default;
|
|
|
|
};//class RenderComponent
|
2025-03-18 01:26:35 +08:00
|
|
|
|
2025-03-25 02:19:32 +08:00
|
|
|
COMPONENT_NAMESPACE_END
|