11 lines
214 B
C#
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);
|