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