Files
wwdpublic/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs
Leon Friedrich 7046d80f16 Hide role entities in the spawn menu (#32798)
(cherry picked from commit 2d60a4684c771b350d9c3c0dab794aa21de624e5)
2025-07-20 20:36:57 +10:00

20 lines
563 B
C#

using Content.Shared.Atmos;
using Robust.Shared.Prototypes;
namespace Content.Server.Atmos.Components
{
/// <summary>
/// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future.
/// </summary>
[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!;
}
}