From ae7654ea646d6f0efc4786c9ad22ef149dfb438c Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sat, 24 Dec 2022 14:38:56 -0600 Subject: [PATCH] feat(vector): add C2iVector --- tempest/Vector.hpp | 1 + tempest/vector/C2iVector.hpp | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 tempest/vector/C2iVector.hpp 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