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