11 lines
348 B
C#
11 lines
348 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._DV.CosmicCult.Components;
|
|
|
|
/// <summary>
|
|
/// Hides temperature alerts and prevents damage while added to an entity.
|
|
/// Force added and removed by cult conversion.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class TemperatureImmunityComponent : Component;
|