using Content.Shared._Shitmed.Autodoc.Systems; using Robust.Shared.Prototypes; namespace Content.Shared._Shitmed.Autodoc.Components; /// /// Creates a list of hands and spawns items to fill them. /// [RegisterComponent, Access(typeof(HandsFillSystem))] public sealed partial class HandsFillComponent : Component { /// /// The name of each hand and the item to fill it with, if any. /// [DataField(required: true)] public Dictionary Hands = new(); }