6
2025-12-27 15:27:38 +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;
}