mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Virtual items cleanup * Detail * Review --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com> (cherry picked from commit 108f001731b9394f98d9ef712b9b777e5b3f8abc)
17 lines
424 B
C#
17 lines
424 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Inventory.VirtualItem;
|
|
|
|
/// <inheritdoc cref="SharedVirtualItemSystem"/>
|
|
[RegisterComponent]
|
|
[NetworkedComponent]
|
|
[AutoGenerateComponentState(true)]
|
|
public sealed partial class VirtualItemComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The entity blocking this slot.
|
|
/// </summary>
|
|
[DataField, AutoNetworkedField]
|
|
public EntityUid BlockingEntity;
|
|
}
|