Files
crystall-punk-14/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs

12 lines
312 B
C#
Raw Permalink Normal View History

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