6
StarHorizon_Public/Content.Shared/Damage/Components/IgnoreSlowOnDamageComponent.cs
2026-01-24 12:49:55 +03:00

10 lines
353 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Damage.Components;
/// <summary>
/// This is used for an effect that nullifies <see cref="SlowOnDamageComponent"/> and adds an alert.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(SlowOnDamageSystem))]
public sealed partial class IgnoreSlowOnDamageComponent : Component;