6
StarHorizon_Public/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs
2026-01-18 12:53:36 +03:00

12 lines
312 B
C#

namespace Content.Server.Atmos.Components;
/// <summary>
/// Component that can be used to add (or remove) fire stacks when used as a melee weapon.
/// </summary>
[RegisterComponent]
public sealed partial class IgniteOnMeleeHitComponent : Component
{
[DataField]
public float FireStacks { get; set; }
}