namespace Content.Server.Atmos.Components { /// /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future. /// [RegisterComponent] public sealed partial class AtmosFixMarkerComponent : Component { // See FixGridAtmos for more details [DataField("mode")] public int Mode { get; set; } = 0; } }