blob: 18696226225cfb4e10a9ad044f9e4303174b9a2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "Mesh.hpp"
namespace MC::GFX {
const std::vector<uint32_t>& Mesh::indices() const {
return m_indices;
}
const std::vector<Mesh::Attribute>& Mesh::attributes() const {
return m_attributes;
}
}
|