Files
tbd-station-14/Content.Shared/Item/MultiHandedItemComponent.cs
Nemanja 168bad2ef2 multi-handed item component (#12523)
* multi-handed item component

* pretty fucking obvious missed portion of this

* holy shit was i on crack wtf was that code

* DEWIT RIGHT
2022-12-19 22:07:23 -06:00

15 lines
379 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Item;
/// <summary>
/// This is used for items that need
/// multiple hands to be able to be picked up
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class MultiHandedItemComponent : Component
{
[DataField("handsNeeded"), ViewVariables(VVAccess.ReadWrite)]
public int HandsNeeded = 2;
}