Update to Zig 0.14.0 and raylib 5.6-dev

This commit is contained in:
Nikolas 2025-03-05 18:09:59 +01:00
parent ae7cb3fa93
commit 1b6a05ca3b
Failed to generate hash of commit
15 changed files with 586 additions and 321 deletions

View file

@ -83,6 +83,10 @@ pub fn vector2DotProduct(v1: Vector2, v2: Vector2) f32 {
return cdef.Vector2DotProduct(v1, v2);
}
pub fn vector2CrossProduct(v1: Vector2, v2: Vector2) f32 {
return cdef.Vector2CrossProduct(v1, v2);
}
pub fn vector2Distance(v1: Vector2, v2: Vector2) f32 {
return cdef.Vector2Distance(v1, v2);
}