Co-authored-by: Jezithyr <6192499+Jezithyr@users.noreply.github.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
16 lines
353 B
C#
16 lines
353 B
C#
namespace Content.Server.IgnitionSource;
|
|
|
|
/// <summary>
|
|
/// This is used for...
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(IgnitionSourceSystem))]
|
|
public sealed class IgnitionSourceComponent : Component
|
|
{
|
|
[DataField("ignited")]
|
|
public bool Ignited = false;
|
|
|
|
[DataField("temperature", required: true)]
|
|
public int Temperature;
|
|
}
|