feat: added normals to parser and model struct

This commit is contained in:
2025-11-19 12:08:15 +01:00
parent eec4a0d44b
commit 939d1e6b1e
2 changed files with 11 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
struct model {
std::vector<vec3> verts;
std::vector<uint16_t> faces;
std::vector<vec3> normals;
};
#endif