Files
tbd-station-14/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs
2022-07-27 03:53:47 -07:00

13 lines
356 B
C#

namespace Content.Server.Clothing.Components;
/// <summary>
/// TODO this needs removed somehow.
/// Handles 'heat resistance' for gloves touching bulbs and that's it, ick.
/// </summary>
[RegisterComponent]
public sealed class GloveHeatResistanceComponent : Component
{
[DataField("heatResistance")]
public int HeatResistance = 323;
}