using Content.Shared.Atmos; using Robust.Shared.Prototypes; namespace Content.Server.Atmos.Components { /// /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future. /// [RegisterComponent, EntityCategory("Mapping")] public sealed partial class AtmosFixMarkerComponent : Component { // See FixGridAtmos for more details [DataField] public int Mode { get; set; } = 0; [DataField] public GasMixture? GasMix = default!; } }