#ifndef VERTEX_H #define VERTEX_H #include typedef struct _Vertex { glm::vec3 position, color; } Vertex; #endif // VERTEX_H