mirror of
https://github.com/zeldaret/ss
synced 2026-07-11 14:48:32 -04:00
d_lyt_msg_window_demo OK
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user