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