6
2026-01-18 12:53:36 +03: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;
}