Files
tbd-station-14/Content.Shared/Item/MultiHandedItemComponent.cs
metalgearsloth 9bdd7307fd Predicted multihanded component (#36712)
* Predicted multihanded component

* Refview

* reh
2025-04-19 18:05:20 +10:00

15 lines
337 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 partial class MultiHandedItemComponent : Component
{
[DataField]
public int HandsNeeded = 2;
}