#ifndef MODEL_H #define MODEL_H #include "fastmath.hpp" #include struct model { std::vector verts; std::vector faces; }; #endif