2023-01-18 00:45:54 -08:00
|
|
|
|
namespace Content.Server.IgnitionSource;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2023-10-22 07:05:48 +01:00
|
|
|
|
/// This is used for creating atmosphere hotspots while ignited to start reactions such as fire.
|
2023-01-18 00:45:54 -08:00
|
|
|
|
/// </summary>
|
2023-10-22 07:05:48 +01:00
|
|
|
|
[RegisterComponent, Access(typeof(IgnitionSourceSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class IgnitionSourceComponent : Component
|
2023-01-18 00:45:54 -08:00
|
|
|
|
{
|
2023-10-22 07:05:48 +01:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public bool Ignited;
|
2023-01-18 00:45:54 -08:00
|
|
|
|
|
2023-12-28 04:05:50 +01:00
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public int Temperature = 700;
|
2023-01-18 00:45:54 -08:00
|
|
|
|
}
|