// SPDX-FileCopyrightText: 2025 GoobBot // SPDX-FileCopyrightText: 2025 deltanedas <@deltanedas:kde.org> // // SPDX-License-Identifier: AGPL-3.0-or-later using Content.Shared._Goobstation.Factory.Slots; using Robust.Shared.GameStates; namespace Content.Shared._Goobstation.Factory; /// /// Adds slots to an entity that can be controlled by automation machines if it also has . /// Slots using can provide or accept items. /// [RegisterComponent, NetworkedComponent, Access(typeof(AutomationSystem))] public sealed partial class AutomationSlotsComponent : Component { /// /// All input slots that can be automated. /// [DataField(required: true)] public List Slots = new(); }