From cc6e50919be1d2c8f91aaa599c2bed443485c039 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Sun, 9 Mar 2025 19:42:14 +0100 Subject: [PATCH] fix(vector3): import math --- src/math/vector3.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/math/vector3.c b/src/math/vector3.c index 004d57f..b570c5f 100644 --- a/src/math/vector3.c +++ b/src/math/vector3.c @@ -1,6 +1,8 @@ -#include +#include #include +#include + Vec3* vec3(float x, float y, float z) { Vec3* vec = (Vec3*)malloc(sizeof(Vec3));