| 42 | } |
| 43 | |
| 44 | void InitializeRenderEntity(const EntityPtr& ptr) { |
| 45 | InitializeTransformEntity(ptr); |
| 46 | ptr->Components().AttachComponent<RenderComponent>(); |
| 47 | ptr->Components().AttachComponent<LightInteractionComponent>(); |
| 48 | ptr->Components().AttachComponent<StaticObjectComponent>(); |
| 49 | } |
| 50 | |
| 51 | Mesh::Mesh() { |
| 52 | cpuData_ = new MeshCpuData_(); |
no test coverage detected