Files
GodotHelpers/GodotHelper/src/Raycasts/PointQueryResult3D.cs

11 lines
214 B
C#

using Godot;
namespace GodotHelpers.Raycasts;
public record PointQueryResult3D(
GodotObject Collider,
int ColliderId,
Rid Rid,
int Shape
) : CollisionResultBase(Collider, ColliderId, Rid, Shape);