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