using Robust.Shared.GameObjects; using Robust.Shared.GameStates; namespace Content.Shared.Tabletop.Components { /// /// Allows an entity to be dragged around by the mouse. The position is updated for all player while dragging. /// [NetworkedComponent] public abstract class SharedTabletopDraggableComponent : Component { } }