feat(vector): add C2iVector

This commit is contained in:
fallenoak 2022-12-24 14:38:56 -06:00
parent bd159b5369
commit ae7654ea64
2 changed files with 14 additions and 0 deletions

View 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