PyroclasticAnomalyComponent.cs 347 B

1234567891011
  1. namespace Content.Shared.Anomaly.Effects.Components;
  2. [RegisterComponent]
  3. public sealed partial class PyroclasticAnomalyComponent : Component
  4. {
  5. /// <summary>
  6. /// The maximum distance from which you can be ignited by the anomaly.
  7. /// </summary>
  8. [DataField("maximumIgnitionRadius")]
  9. public float MaximumIgnitionRadius = 5f;
  10. }