2021-10-19 20:07:47 +01:00
|
|
|
namespace Content.Server.Atmos.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AtmosFixMarkerComponent : Component
|
2021-10-19 20:07:47 +01:00
|
|
|
{
|
|
|
|
|
// See FixGridAtmos for more details
|
|
|
|
|
[DataField("mode")]
|
|
|
|
|
public int Mode { get; set; } = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|