8 lines
182 B
C#
8 lines
182 B
C#
namespace Content.Shared.Climbing.Events;
|
|
|
|
[ByRefEvent]
|
|
public record struct AttemptClimbEvent(EntityUid User, EntityUid Climber, EntityUid Climbable)
|
|
{
|
|
public bool Cancelled;
|
|
}
|