| 4 | namespace ZEngine::Rendering::Meshes { |
| 5 | |
| 6 | Mesh::Mesh() : m_unique_identifier(0), m_geometry(nullptr), m_material(nullptr) {} |
| 7 | |
| 8 | Mesh::Mesh(Geometries::IGeometry* const geometry, Materials::ShaderMaterial* const material) : m_unique_identifier(0), m_geometry(geometry), m_material(material) {} |
| 9 |
nothing calls this directly
no outgoing calls
no test coverage detected