Files
crystall-punk-14/Content.Shared/Anomaly/Effects/Components/PyroclasticAnomalyComponent.cs

12 lines
347 B
C#
Raw Permalink Normal View History

namespace Content.Shared.Anomaly.Effects.Components;
2023-01-17 00:05:20 -05:00
[RegisterComponent]
public sealed partial class PyroclasticAnomalyComponent : Component
2023-01-17 00:05:20 -05:00
{
/// <summary>
/// The maximum distance from which you can be ignited by the anomaly.
/// </summary>
[DataField("maximumIgnitionRadius")]
public float MaximumIgnitionRadius = 5f;
2023-01-17 00:05:20 -05:00
}