2023-07-13 20:20:46 +10:00
|
|
|
|
using Robust.Shared.GameStates;
|
2021-09-17 07:16:11 -07:00
|
|
|
|
|
2023-07-13 20:20:46 +10:00
|
|
|
|
namespace Content.Shared.Hands.Components;
|
2021-09-17 07:16:11 -07:00
|
|
|
|
|
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;
|
2021-09-17 07:16:11 -07:00
|
|
|
|
}
|