Adds temperature to solutions (#5834)

This commit is contained in:
TemporalOroboros
2021-12-24 01:22:34 -08:00
committed by GitHub
parent c94f93732b
commit 201952e618
18 changed files with 858 additions and 21 deletions

View File

@@ -46,6 +46,13 @@ namespace Content.Shared.Chemistry.Reagent
[DataField("color")]
public Color SubstanceColor { get; } = Color.White;
/// <summary>
/// The specific heat of the reagent.
/// How much energy it takes to heat one unit of this reagent by one Kelvin.
/// </summary>
[DataField("specificHeat")]
public float SpecificHeat { get; } = 1.0f;
[DataField("boilingPoint")]
public float? BoilingPoint { get; }