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
-23
View File
@@ -1,23 +0,0 @@
#ifndef D_LYT_VEC2F_H
#define D_LYT_VEC2F_H
#include "common.h"
// This better not be mVec2_c or something stupid
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;
};
#endif