added base helpers and a simple test.
This commit is contained in:
10
GodotHelper/src/Raycasts/PointQueryResult2D.cs
Normal file
10
GodotHelper/src/Raycasts/PointQueryResult2D.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Godot;
|
||||
|
||||
namespace GodotHelpers.Raycasts;
|
||||
|
||||
public record PointQueryResult2D(
|
||||
GodotObject Collider,
|
||||
int ColliderId,
|
||||
Rid Rid,
|
||||
int Shape
|
||||
) : CollisionResultBase(Collider, ColliderId, Rid, Shape);
|
||||
Reference in New Issue
Block a user