13 lines
494 B
C#
13 lines
494 B
C#
// SPDX-FileCopyrightText: 2025 GoobBot <uristmchands@proton.me>
|
|
// SPDX-FileCopyrightText: 2025 Marcus F <199992874+thebiggestbruh@users.noreply.github.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Content.Shared._Goobstation.Temperature.Components;
|
|
|
|
/// <summary>
|
|
/// Used to ensure that HighTempImmunityComponent is not overriden (when it is made eventually)
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class SpecialHighTempImmunityComponent : Component;
|