aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/graphics/je_vertex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/graphics/je_vertex.h')
-rw-r--r--src/libjin/graphics/je_vertex.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/libjin/graphics/je_vertex.h b/src/libjin/graphics/je_vertex.h
new file mode 100644
index 0000000..d149cfc
--- /dev/null
+++ b/src/libjin/graphics/je_vertex.h
@@ -0,0 +1,21 @@
+#ifndef __JE_MATH_VERTEX_H__
+#define __JE_MATH_VERTEX_H__
+
+#include "je_color.h"
+
+namespace JinEngine
+{
+ namespace Graphics
+ {
+
+ struct Vertex
+ {
+ float x, y; // Coordinates
+ float u, v; // UV
+ Color color; // Color
+ };
+
+ }
+}
+
+#endif \ No newline at end of file