#pragma once #include #include struct Texture { std::string pathToTexture; uint32_t textureType; uint32_t m_textureId; }; struct Mesh { std::vector vertices; std::vector indices; std::vector textureIds; }; struct Model { std::vector textures; std::vector m_meshes; std::string m_workingPath; };