11 lines
149 B
C
11 lines
149 B
C
|
#ifndef VERTEX_H
|
||
|
#define VERTEX_H
|
||
|
|
||
|
#include <GLM/vec3.hpp>
|
||
|
|
||
|
typedef struct _Vertex
|
||
|
{
|
||
|
glm::vec3 position, color;
|
||
|
} Vertex;
|
||
|
|
||
|
#endif // VERTEX_H
|