From 8854b78cc3553c837667fbba1347a0b5e1807d12 Mon Sep 17 00:00:00 2001 From: "re.kovalev" Date: Fri, 25 Feb 2022 22:18:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D1=82=D1=80=D1=83=D0=BA=D1=82=D1=83?= =?UTF-8?q?=D1=80=D0=B0=20=D1=81=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B=D0=BC?= =?UTF-8?q?=D0=B8=20=D0=B4=D0=BB=D1=8F=20=D0=B2=D0=B5=D1=80=D1=88=D0=B8?= =?UTF-8?q?=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/Vertex.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/Vertex.h diff --git a/include/Vertex.h b/include/Vertex.h new file mode 100644 index 0000000..f8d66a2 --- /dev/null +++ b/include/Vertex.h @@ -0,0 +1,11 @@ +#ifndef VERTEX_H +#define VERTEX_H + +#include + +typedef struct _Vertex +{ + glm::vec3 position, color; +} Vertex; + +#endif // VERTEX_H \ No newline at end of file