6
StarHorizon_Public/Content.Server/Atmos/Components/AtmosFixMarkerComponent.cs
2026-01-24 12:49:55 +03:00

16 lines
476 B
C#

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("mode")]
public int Mode { get; set; } = 0;
}
}