using Robust.Shared.GameStates; namespace Content.Shared._DV.Carrying; [RegisterComponent, NetworkedComponent, Access(typeof(CarryingSystem))] public sealed partial class CarriableComponent : Component { /// /// Number of free hands required /// to carry the entity /// [DataField] public int FreeHandsRequired = 2; }