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