fix: last game update

This commit is contained in:
2024-06-12 15:56:21 +02:00
parent 58a6b03839
commit 47a21f293e
13 changed files with 54702 additions and 209248 deletions

View File

@@ -2,7 +2,13 @@
namespace Math {
namespace Vector3 {
const char* ToString(app::Vector3* v);
const char* ToString(app::Vector3__Boxed* v);
const char* ToString(app::Vector3 v);
}
}
}
namespace app {
Vector3 operator+(const Vector3& lhs, const Vector3& rhs);
Vector3 operator*(const Vector3& vec, float scalar);
Vector3 operator-(const Vector3& lhs, const Vector3& rhs);
}