d_lyt_msg_window_demo OK

This commit is contained in:
robojumper
2025-04-05 22:35:43 +02:00
parent 67816d6cba
commit 144533e9f9
3 changed files with 48 additions and 39 deletions
+9
View File
@@ -7,6 +7,15 @@
struct LytVec2f {
LytVec2f() {}
~LytVec2f() {}
LytVec2f(const LytVec2f &other) {
set(other.x, other.y);
}
void set(f32 fx, f32 fy) {
x = fx;
y = fy;
}
f32 x;
f32 y;
};