summary refs log tree commit diff
path: root/src/Math
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math')
-rw-r--r--src/Math/Math.hpp3
-rw-r--r--src/Math/Vector.hpp9
2 files changed, 12 insertions, 0 deletions
diff --git a/src/Math/Math.hpp b/src/Math/Math.hpp
new file mode 100644
index 0000000..66ffd36
--- /dev/null
+++ b/src/Math/Math.hpp
@@ -0,0 +1,3 @@
+#pragma once
+
+#include "Vector.hpp"
\ No newline at end of file
diff --git a/src/Math/Vector.hpp b/src/Math/Vector.hpp
new file mode 100644
index 0000000..9c76758
--- /dev/null
+++ b/src/Math/Vector.hpp
@@ -0,0 +1,9 @@
+#pragma once
+
+struct Vector3 {
+public:
+    Vector3(float x, float y, float z)
+        : x(x), y(y), z(z) {};
+
+    float x, y, z;
+};