WIP controller stuff

This commit is contained in:
robojumper
2024-05-04 18:29:37 +02:00
parent 126c5db943
commit ee92f6bb83
9 changed files with 403 additions and 25 deletions
+1
View File
@@ -2,6 +2,7 @@
#define EGG_MATH_H
#include <common.h>
#include <MSL_C/float.h>
namespace EGG {
+2
View File
@@ -109,7 +109,9 @@ struct Vector3f : public nw4r::math::VEC3 {
};
struct Vector2f : nw4r::math::VEC2 {
inline Vector2f() {}
Vector2f(f32 fx, f32 fy) : VEC2(fx, fy) {}
inline ~Vector2f() {}
public:
/* 805767c0 */ static const Vector2f zero;