2022-06-24 17:44:30 +10:00
|
|
|
using Content.Client.Movement.Systems;
|
2022-02-17 15:40:03 +13:00
|
|
|
using Content.Shared.Climbing;
|
2020-08-19 18:13:22 -04:00
|
|
|
|
2022-05-10 01:08:52 -07:00
|
|
|
namespace Content.Client.Movement.Components;
|
2021-01-11 22:14:01 +11:00
|
|
|
|
2022-05-10 01:08:52 -07:00
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(ClimbSystem))]
|
2022-05-10 01:08:52 -07:00
|
|
|
[ComponentReference(typeof(SharedClimbableComponent))]
|
|
|
|
|
public sealed class ClimbableComponent : SharedClimbableComponent { }
|