pleascach/Model/GltfVertex.hpp
2024-01-10 20:49:03 -05:00

13 lines
261 B
C++

#pragma once
#include <Renderer/VertexInfo.hpp>
struct GltfVertex {
static const VertexInfo Info {
.componenets = {
{ .type = VertexComponent::Type::vec3 }
{ .type = VertexComponent::Type::vec3 }
{ .type = VertexComponent::Type::vec3 }
},
};
};