Files
tbd-station-14/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs
2022-02-02 14:35:40 +11:00

18 lines
420 B
C#

using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Content.Server.Atmos.Components
{
[RegisterComponent]
public class IgniteOnCollideComponent : Component
{
[DataField("fireStacks")]
public float FireStacks { get; set; }
}
}