2022-06-24 17:44:30 +10:00
|
|
|
|
using Content.Client.Movement.Systems;
|
|
|
|
|
|
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;
|
2020-11-26 14:33:31 +01: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(SharedClimbingComponent))]
|
|
|
|
|
|
public sealed class ClimbingComponent : SharedClimbingComponent { }
|