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

This commit is contained in:
2022-02-25 22:18:53 +03:00
parent e7cd030fe0
commit 8854b78cc3

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