Структура с данными для вершины

This commit is contained in:
parent e7cd030fe0
commit 8854b78cc3
1 changed files with 11 additions and 0 deletions

11
include/Vertex.h Normal file
View File

@ -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