Files
crystall-punk-14/Content.Shared/Climbing/SharedClimbableComponent.cs

13 lines
376 B
C#
Raw Normal View History

2022-05-13 00:59:03 -07:00
using Content.Shared.Interaction;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Climbing
{
2022-05-10 01:08:52 -07:00
public abstract class SharedClimbableComponent : Component
{
/// <summary>
/// The range from which this entity can be climbed.
/// </summary>
2022-05-10 01:08:52 -07:00
[ViewVariables] [DataField("range")] public float Range = SharedInteractionSystem.InteractionRange / 1.4f;
}
}