#ifndef MODEL_H #define MODEL_H #include "fastmath.hpp" #include #include struct model { std::vector verts; // At 0 vertecie index, at 1 normal index std::vector> faces; std::vector normals; std::vector colors; }; #endif