Files
tbd-station-14/Content.Shared/Climbing/SharedClimbableComponent.cs
2022-05-13 17:59:03 +10:00

13 lines
376 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>
[ViewVariables] [DataField("range")] public float Range = SharedInteractionSystem.InteractionRange / 1.4f;
}
}