2021-09-09 16:20:41 +02:00
|
|
|
using Robust.Shared.Analyzers;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Flash.Components
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent, Friend(typeof(FlashSystem))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class FlashImmunityComponent : Component
|
2021-09-09 16:20:41 +02:00
|
|
|
{
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
[DataField("enabled")]
|
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
|
}
|
|
|
|
|
}
|