diff --git a/tempest/Vector.hpp b/tempest/Vector.hpp index 7eb4e5f..c99d63f 100644 --- a/tempest/Vector.hpp +++ b/tempest/Vector.hpp @@ -2,6 +2,7 @@ #define TEMPEST_VECTOR_HPP #include "tempest/vector/C2Vector.hpp" +#include "tempest/vector/C2iVector.hpp" #include "tempest/vector/C3Vector.hpp" #include "tempest/vector/C4Vector.hpp" diff --git a/tempest/vector/C2iVector.hpp b/tempest/vector/C2iVector.hpp new file mode 100644 index 0000000..2c3d148 --- /dev/null +++ b/tempest/vector/C2iVector.hpp @@ -0,0 +1,13 @@ +#ifndef TEMPEST_VECTOR_C_2IVECTOR_HPP +#define TEMPEST_VECTOR_C_2IVECTOR_HPP + +#include + +class C2iVector { + public: + // Member variables + int32_t x; + int32_t y; +}; + +#endif