2024-04-03 00:48:08 +03:00
|
|
|
using Content.Server.Temperature.Systems;
|
|
|
|
|
|
2024-04-20 12:45:25 +03:00
|
|
|
namespace Content.Server._CP14.Temperature;
|
2024-04-03 00:48:08 +03:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Adds thermal energy from FlammableComponent to entities with <see cref="TemperatureComponent"/> placed on it.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(EntityHeaterSystem))]
|
2024-04-20 12:45:25 +03:00
|
|
|
public sealed partial class CP14FlammableEntityHeaterComponent : Component
|
2024-04-03 00:48:08 +03:00
|
|
|
{
|
2024-05-01 19:55:48 +03:00
|
|
|
[DataField]
|
2024-07-23 10:29:41 +03:00
|
|
|
public float DegreesPerStack = 300f;
|
2024-04-03 00:48:08 +03:00
|
|
|
}
|