#ifndef GAME_H #define GAME_H #include struct vertex { glm::vec3 pos; glm::vec2 tex_coord; bool operator==(const vertex& other) const { return pos == other.pos && tex_coord == other.tex_coord; } }; // TODO: Alignment int loadModel(std::vector &verticies, std::vector &indices); #endif