using Content.Shared.Inventory; namespace Content.Server.VoiceTrigger; /// /// Entities with this component, Containers, and TriggerOnVoiceComponent will insert any item or extract the spoken item after the TriggerOnVoiceComponent has been activated /// [RegisterComponent] public sealed partial class StorageVoiceControlComponent : Component { /// /// Used to determine which slots the component can be used in. /// /// If not set, the component can be used anywhere, even while inside other containers. /// /// [DataField] public SlotFlags? AllowedSlots; }