mirror of
https://github.com/thunderbrewhq/typhoon.git
synced 2025-12-12 18:42:28 +00:00
14 lines
192 B
C++
14 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
|