Delta-v/Content.Shared/Tabletop/Components/SharedTabletopDraggableComp...

15 lines
438 B
C#

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