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

11 lines
214 B
C#
Raw Normal View History

2026-04-10 20:12:50 -04:00
using Godot;
namespace GodotHelpers.Raycasts;
public record PointQueryResult2D(
GodotObject Collider,
int ColliderId,
Rid Rid,
int Shape
) : CollisionResultBase(Collider, ColliderId, Rid, Shape);