11 lines
310 B
C#
11 lines
310 B
C#
namespace Content.Shared._NF.Interaction.Components;
|
|
|
|
[RegisterComponent]
|
|
// Client-side component of the HandPlaceholder. Creates and tracks a client-side entity for hand blocking visuals
|
|
public sealed partial class HandPlaceholderVisualsComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntityUid Dummy;
|
|
}
|
|
|