4#include "../limits.hpp"
6namespace MdlParser::Structs::Vvd {
7 using Limits::MAX_NUM_LODS;
8 using Limits::MAX_NUM_BONES_PER_VERT;
13 static constexpr int32_t SUPPORTED_VERSION = 4;
20 std::array<int32_t, MAX_NUM_LODS> numLoDVertices;
23 int32_t fixupTableOffset;
25 int32_t vertexDataOffset;
26 int32_t tangentDataOffset;
31 int32_t sourceVertexId;
36 std::array<float, MAX_NUM_BONES_PER_VERT> weight;
37 std::array<int8_t, MAX_NUM_BONES_PER_VERT> bone;
Definition: common.hpp:10