feat(vector): add C2Vector

This commit is contained in:
fallenoak 2020-11-26 12:40:31 -06:00
parent 1ed0cd740b
commit 0ebe6450a0
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 12 additions and 0 deletions

View file

@ -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"

View file

@ -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