Files
OldThink/Content.Server/Clothing/Components/GloveHeatResistanceComponent.cs

13 lines
364 B
C#
Raw Permalink Normal View History

2022-07-27 03:53:47 -07:00
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 partial class GloveHeatResistanceComponent : Component
2022-07-27 03:53:47 -07:00
{
[DataField("heatResistance")]
public int HeatResistance = 323;
}