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