diff --git a/lib/raylib-zig.zig b/lib/raylib-zig.zig index f4131c4..440b65c 100755 --- a/lib/raylib-zig.zig +++ b/lib/raylib-zig.zig @@ -323,10 +323,10 @@ pub const Ray = extern struct { direction: Vector3, }; -pub const RayHitInfo = extern struct { +pub const RayCollision = extern struct { hit: bool, distance: f32, - position: Vector3, + point: Vector3, normal: Vector3, };