12 lines
162 B
C
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
|