aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/graphics/Vertex.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/graphics/Vertex.hpp b/src/graphics/Vertex.hpp
new file mode 100644
index 0000000..98158fa
--- /dev/null
+++ b/src/graphics/Vertex.hpp
@@ -0,0 +1,11 @@
+#ifndef ENGINE_VERTEX_H
+#define ENGINE_VERTEX_H
+
+#include <glm/glm.hpp>
+
+typedef struct {
+ glm::vec3 pos_coords;
+ glm::vec2 tex_coords;
+} Vertex;
+
+#endif /* ENGINE_VERTEX_H */