typhoon/tempest/vector/C2iVector.hpp
2022-12-24 14:43:20 -06:00

13 lines
192 B
C++

#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