typhoon/tempest/vector/C2iVector.hpp

14 lines
192 B
C++
Raw Permalink Normal View History

2022-12-24 14:38:56 -06:00
#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