diff --git a/include/Vertex.h b/include/Vertex.h new file mode 100644 index 0000000..f8d66a2 --- /dev/null +++ b/include/Vertex.h @@ -0,0 +1,11 @@ +#ifndef VERTEX_H +#define VERTEX_H + +#include + +typedef struct _Vertex +{ + glm::vec3 position, color; +} Vertex; + +#endif // VERTEX_H \ No newline at end of file