d_lyt_pause_disp_00 with a few nonmatching functions

This commit is contained in:
robojumper
2025-08-09 15:48:22 +02:00
parent dda24ef01a
commit 0847c40aa0
6 changed files with 459 additions and 241 deletions
+4
View File
@@ -315,6 +315,10 @@ public:
mVec2_c operator-(const mVec2_c &v) const {
return mVec2_c(x - v.x, y - v.y);
}
f32 squareDistanceTo(const mVec2_c &other) const {
return (*this - other).squaredLength();
}
};
#endif