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

namespace MC::GFX {

std::vector<uint32_t> Mesh::indices() {
    return m_indices;
}

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

}