mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
13 lines
363 B
C#
13 lines
363 B
C#
namespace Content.Server.Flash.Components;
|
|
|
|
/// <summary>
|
|
/// Makes the entity immune to being flashed.
|
|
/// When given to clothes in the "head", "eyes" or "mask" slot it protects the wearer.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class FlashImmunityComponent : Component
|
|
{
|
|
[DataField]
|
|
public bool Enabled { get; set; } = true;
|
|
}
|