17 lines
484 B
C#
17 lines
484 B
C#
using Content.Server.Atmos.EntitySystems;
|
|
|
|
namespace Content.Server.Atmos.Components;
|
|
|
|
[RegisterComponent, Access(typeof(FlammableSystem))]
|
|
public sealed partial class IgniteOnCollideComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// How many more times the ignition can be applied.
|
|
/// </summary>
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("count")]
|
|
public int Count = 1;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite), DataField("fireStacks")]
|
|
public float FireStacks;
|
|
}
|