6
StarHorizon_Public/Content.Server/_NF/Atmos/Components/IgniteOnProjectileHitComponent.cs
2026-01-24 12:49:55 +03:00

13 lines
403 B
C#

namespace Content.Server._NF.Atmos.Components;
/// <summary>
/// Component that can be used to add (or remove) fire stacks when used as a projectile.
/// Useful vs. IgniteOnCollide for non-disposable projectiles, like crossbow bolts.
/// </summary>
[RegisterComponent]
public sealed partial class IgniteOnProjectileHitComponent : Component
{
[DataField]
public float FireStacks { get; set; }
}