mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 02:22:30 +00:00
feat(vector): add C2iVector
This commit is contained in:
parent
bd159b5369
commit
ae7654ea64
2 changed files with 14 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
#define TEMPEST_VECTOR_HPP
|
#define TEMPEST_VECTOR_HPP
|
||||||
|
|
||||||
#include "tempest/vector/C2Vector.hpp"
|
#include "tempest/vector/C2Vector.hpp"
|
||||||
|
#include "tempest/vector/C2iVector.hpp"
|
||||||
#include "tempest/vector/C3Vector.hpp"
|
#include "tempest/vector/C3Vector.hpp"
|
||||||
#include "tempest/vector/C4Vector.hpp"
|
#include "tempest/vector/C4Vector.hpp"
|
||||||
|
|
||||||
|
|
|
||||||
13
tempest/vector/C2iVector.hpp
Normal file
13
tempest/vector/C2iVector.hpp
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#ifndef TEMPEST_VECTOR_C_2IVECTOR_HPP
|
||||||
|
#define TEMPEST_VECTOR_C_2IVECTOR_HPP
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
class C2iVector {
|
||||||
|
public:
|
||||||
|
// Member variables
|
||||||
|
int32_t x;
|
||||||
|
int32_t y;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Add table
Add a link
Reference in a new issue