#ifndef VERTEX_H #define VERTEX_H #include struct Vertex { glm::vec3 Position; glm::vec3 Normal; glm::vec2 TextureCoords; }; #endif // VERTEX_H