#pragma once #include #include #include struct Vertex { std::array position; float blendWeights[4]; std::vector blendIndices; float normal[3]; float uv[4]; float color[4]; float tangent2[4]; float tangent1[4]; }; struct Model { }; Model parseMDL(const std::string_view path);