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

10 lines
223 B
C#
Raw Normal View History

namespace Content.Server.Atmos.Components
{
[RegisterComponent]
public sealed class IgniteOnCollideComponent : Component
{
[DataField("fireStacks")]
2022-02-01 19:35:40 -08:00
public float FireStacks { get; set; }
}
}