using Robust.Shared.GameStates; namespace Content.Shared._DV.Carrying; /// /// Added to an entity when they are carrying somebody. /// [RegisterComponent, NetworkedComponent, Access(typeof(CarryingSystem))] [AutoGenerateComponentState] public sealed partial class CarryingComponent : Component { [DataField, AutoNetworkedField] public EntityUid Carried; }