1
0

AtmosFixMarkerComponent.cs 476 B

123456789101112131415
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Server.Atmos.Components
  3. {
  4. /// <summary>
  5. /// Used by FixGridAtmos. Entities with this may get magically auto-deleted on map initialization in future.
  6. /// </summary>
  7. [RegisterComponent, EntityCategory("Mapping")]
  8. public sealed partial class AtmosFixMarkerComponent : Component
  9. {
  10. // See FixGridAtmos for more details
  11. [DataField("mode")]
  12. public int Mode { get; set; } = 0;
  13. }
  14. }