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