summary refs log tree commit diff
path: root/src/GFX/Mesh.cpp
blob: c45b5c9ec9e8a970cf51a5159fbe7018273b13e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Mesh.hpp"

namespace MC::GFX {

const std::vector<U32>& Mesh::indices() const {
    return m_indices;
}

const std::vector<Mesh::Attribute>& Mesh::attributes() const {
    return m_attributes;
}

}