mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* Hivelord * make it longah (cherry picked from commit e510504596f992744cfe62cdf26aa12f38ff6aa2)
10 lines
353 B
C#
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;
|