Introduce mVec2_c

This commit is contained in:
robojumper
2025-04-05 23:36:55 +02:00
parent a5b91ef55d
commit cd5fd322f8
8 changed files with 25 additions and 33 deletions
+10
View File
@@ -254,4 +254,14 @@ public:
static mVec3_c Ez;
};
class mVec2_c : public EGG::Vector2f {
public:
mVec2_c() {}
~mVec2_c() {}
mVec2_c(const mVec2_c &other) {
set(other.x, other.y);
}
};
#endif