#include "Mesh.hpp" namespace MC::GFX { const std::vector& Mesh::indices() const { return m_indices; } const std::vector& Mesh::attributes() const { return m_attributes; } }