// SPDX-FileCopyrightText: 2025 GoobBot // SPDX-FileCopyrightText: 2025 deltanedas <@deltanedas:kde.org> // // SPDX-License-Identifier: AGPL-3.0-or-later using Robust.Shared.Serialization; namespace Content.Server._Goobstation.Singularity; /// /// Emits signals depending on tank pressure for automated radiation collectors. /// [RegisterComponent, Access(typeof(RadCollectorSignalSystem))] public sealed partial class RadCollectorSignalComponent : Component { [DataField] public RadCollectorState LastState = RadCollectorState.Empty; } [Serializable] public enum RadCollectorState : byte { Empty, Low, Full }