feat: sync with Whoa implementation

This commit is contained in:
VDm 2026-04-24 00:30:51 +04:00
parent 254ba545f5
commit 6a31dc3ea4
19 changed files with 988 additions and 774 deletions

View file

@ -8,6 +8,17 @@ class C2iVector {
// Member variables
int32_t x;
int32_t y;
// Member functions
C2iVector()
: C2iVector(0) {};
C2iVector(int32_t a)
: C2iVector(a, a) {};
C2iVector(const C2iVector& v)
: C2iVector(v.x, v.y) {};
C2iVector(int32_t x, int32_t y)
: x(x)
, y(y) {};
};
#endif