mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
the pro ops Co-authored-by: deltanedas <@deltanedas:kde.org> (cherry picked from commit 984cd643fe8e7d1930bddb641750548280539983)
12 lines
319 B
C#
12 lines
319 B
C#
using Content.Shared.Temperature.Systems;
|
|
|
|
namespace Content.Shared.Temperature.Components;
|
|
|
|
/// <summary>
|
|
/// Makes the entity always set <c>IsHotEvent.IsHot</c> to true, no matter what.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(AlwaysHotSystem))]
|
|
public sealed partial class AlwaysHotComponent : Component
|
|
{
|
|
}
|