Rename RayHitInfo to RayCollision

This struct was renamed by upstream a while ago:
1c5de9721a
This commit is contained in:
Alexander Heinrich 2022-12-17 18:26:27 +01:00
parent 3a7b9f0009
commit 7ee4eb953d

View File

@ -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,
};