Files
tbd-station-14/Content.Client/Tabletop/Components/TabletopDraggableComponent.cs
2022-02-16 18:23:23 +11:00

17 lines
488 B
C#

using Content.Shared.Tabletop.Components;
using Robust.Shared.GameObjects;
using Robust.Shared.Network;
using Robust.Shared.ViewVariables;
namespace Content.Client.Tabletop.Components
{
[RegisterComponent]
[ComponentReference(typeof(SharedTabletopDraggableComponent))]
public sealed class TabletopDraggableComponent : SharedTabletopDraggableComponent
{
// The player dragging the piece
[ViewVariables]
public NetUserId? DraggingPlayer;
}
}