Files
tbd-station-14/Content.Shared/Climbing/SharedClimbableComponent.cs

13 lines
360 B
C#

using Content.Shared.Interaction;
namespace Content.Shared.Climbing
{
public abstract class SharedClimbableComponent : Component
{
/// <summary>
/// The range from which this entity can be climbed.
/// </summary>
[DataField("range")] public float Range = SharedInteractionSystem.InteractionRange / 1.4f;
}
}