1
0

AlwaysHotComponent.cs 319 B

1234567891011
  1. using Content.Shared.Temperature.Systems;
  2. namespace Content.Shared.Temperature.Components;
  3. /// <summary>
  4. /// Makes the entity always set <c>IsHotEvent.IsHot</c> to true, no matter what.
  5. /// </summary>
  6. [RegisterComponent, Access(typeof(AlwaysHotSystem))]
  7. public sealed partial class AlwaysHotComponent : Component
  8. {
  9. }