using Robust.Shared.GameStates; namespace Content.Shared.Strip.Components { /// /// Give to an entity to say they can strip another entity. /// [RegisterComponent, NetworkedComponent] public sealed partial class StrippingComponent : Component { // Sunrise-Start [DataField] public bool UseDragDrop = true; // Sunrise-End } }