From 0ebe6450a03885c2e433419b363f99fd9e95df16 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Thu, 26 Nov 2020 12:40:31 -0600 Subject: [PATCH] feat(vector): add C2Vector --- tempest/Vector.hpp | 1 + tempest/vector/C2Vector.hpp | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tempest/vector/C2Vector.hpp 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