10 lines
273 B
C#
10 lines
273 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.DeltaV.Weather.Components;
|
|
|
|
/// <summary>
|
|
/// Makes an entity not take damage from ash storms.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class AshStormImmuneComponent : Component;
|