Files
crystall-punk-14/Content.Shared/Hands/Components/HandVirtualItemComponent.cs

16 lines
396 B
C#
Raw Normal View History

2023-07-13 20:20:46 +10:00
using Robust.Shared.GameStates;
2023-07-13 20:20:46 +10:00
namespace Content.Shared.Hands.Components;
2023-07-13 20:20:46 +10:00
[RegisterComponent]
[NetworkedComponent]
[AutoGenerateComponentState(true)]
public sealed partial class HandVirtualItemComponent : Component
{
/// <summary>
/// The entity blocking this hand.
/// </summary>
[DataField("blockingEntity"), AutoNetworkedField]
public EntityUid BlockingEntity;
}