11 lines
159 B
C#
11 lines
159 B
C#
|
|
using Godot;
|
||
|
|
|
||
|
|
namespace GodotHelpers.Raycasts;
|
||
|
|
|
||
|
|
public record CollisionResultBase(
|
||
|
|
GodotObject Collider,
|
||
|
|
int ColliderId,
|
||
|
|
Rid Rid,
|
||
|
|
int Shape
|
||
|
|
);
|