From 1ed0cd740b249d5659869974a427847ed2abe9eb Mon Sep 17 00:00:00 2001 From: fallenoak Date: Thu, 26 Nov 2020 11:53:27 -0600 Subject: [PATCH] feat(vector): add C4Vector --- tempest/Vector.hpp | 1 + tempest/vector/C4Vector.hpp | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 tempest/vector/C4Vector.hpp diff --git a/tempest/Vector.hpp b/tempest/Vector.hpp index 53d311e..3bda94f 100644 --- a/tempest/Vector.hpp +++ b/tempest/Vector.hpp @@ -2,5 +2,6 @@ #define TEMPEST_VECTOR_HPP #include "tempest/vector/C3Vector.hpp" +#include "tempest/vector/C4Vector.hpp" #endif diff --git a/tempest/vector/C4Vector.hpp b/tempest/vector/C4Vector.hpp new file mode 100644 index 0000000..df630fd --- /dev/null +++ b/tempest/vector/C4Vector.hpp @@ -0,0 +1,13 @@ +#ifndef TEMPEST_VECTOR_C_4VECTOR_HPP +#define TEMPEST_VECTOR_C_4VECTOR_HPP + +class C4Vector { + public: + // Member variables + float x = 0.0f; + float y = 0.0f; + float z = 0.0f; + float w = 0.0f; +}; + +#endif