Структура с данными для вершины
This commit is contained in:
parent
e7cd030fe0
commit
8854b78cc3
|
@ -0,0 +1,11 @@
|
||||||
|
#ifndef VERTEX_H
|
||||||
|
#define VERTEX_H
|
||||||
|
|
||||||
|
#include <GLM/vec3.hpp>
|
||||||
|
|
||||||
|
typedef struct _Vertex
|
||||||
|
{
|
||||||
|
glm::vec3 position, color;
|
||||||
|
} Vertex;
|
||||||
|
|
||||||
|
#endif // VERTEX_H
|
Loading…
Reference in New Issue