2022-05-13 00:59:03 -07:00
|
|
|
|
using Content.Shared.Interaction;
|
2020-08-19 18:13:22 -04:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Climbing
|
2020-08-19 18:13:22 -04:00
|
|
|
|
{
|
2022-05-10 01:08:52 -07:00
|
|
|
|
public abstract class SharedClimbableComponent : Component
|
2020-08-19 18:13:22 -04:00
|
|
|
|
{
|
2021-01-11 22:14:01 +11:00
|
|
|
|
/// <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;
|
2020-08-19 18:13:22 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|