06/include/Vertex.h

12 lines
162 B
C

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