Files
tbd-station-14/Content.Shared/Tabletop/Components/SharedTabletopDraggableComponent.cs
2022-02-02 14:35:40 +11:00

14 lines
378 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
{
}
}