6
2025-11-03 10:15:18 +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;
}