diff --git a/tempest/Vector.hpp b/tempest/Vector.hpp index 3bda94f..7eb4e5f 100644 --- a/tempest/Vector.hpp +++ b/tempest/Vector.hpp @@ -1,6 +1,7 @@ #ifndef TEMPEST_VECTOR_HPP #define TEMPEST_VECTOR_HPP +#include "tempest/vector/C2Vector.hpp" #include "tempest/vector/C3Vector.hpp" #include "tempest/vector/C4Vector.hpp" diff --git a/tempest/vector/C2Vector.hpp b/tempest/vector/C2Vector.hpp new file mode 100644 index 0000000..708d4fe --- /dev/null +++ b/tempest/vector/C2Vector.hpp @@ -0,0 +1,11 @@ +#ifndef TEMPEST_VECTOR_C_2VECTOR_HPP +#define TEMPEST_VECTOR_C_2VECTOR_HPP + +class C2Vector { + public: + // Member variables + float x = 0.0f; + float y = 0.0f; +}; + +#endif