6
2026-01-13 18:31:02 +02:00

8 lines
182 B
C#

namespace Content.Shared.Climbing.Events;
[ByRefEvent]
public record struct AttemptClimbEvent(EntityUid User, EntityUid Climber, EntityUid Climbable)
{
public bool Cancelled;
}