mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
21 lines
585 B
C#
21 lines
585 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
using Content.Shared.CCVar;
|
|
|
|
namespace Content.Shared.Atmos.EntitySystems;
|
|
|
|
public abstract partial class SharedAtmosphereSystem
|
|
{
|
|
/*
|
|
Partial class for storing shared configuration values.
|
|
*/
|
|
|
|
public float HeatScale { get; private set; }
|
|
|
|
[SuppressMessage("ReSharper", "BadExpressionBracesLineBreaks")]
|
|
[SuppressMessage("ReSharper", "MultipleStatementsOnOneLine")]
|
|
private void InitializeCVars()
|
|
{
|
|
Subs.CVar(_cfg, CCVars.AtmosHeatScale, value => { HeatScale = value; InitializeGases(); }, true);
|
|
}
|
|
}
|