mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
16 lines
361 B
C#
16 lines
361 B
C#
namespace Content.Server.IgnitionSource;
|
|
|
|
/// <summary>
|
|
/// This is used for...
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(IgnitionSourceSystem))]
|
|
public sealed partial class IgnitionSourceComponent : Component
|
|
{
|
|
[DataField("ignited")]
|
|
public bool Ignited = false;
|
|
|
|
[DataField("temperature", required: true)]
|
|
public int Temperature;
|
|
}
|