Files
tbd-station-14/Content.Shared/Zombies/InitialInfectedComponent.cs
Killerqu00 45d6c03407 Initial Infected can see each other (#25934)
initial infected icon
2024-03-18 15:57:36 -06:00

17 lines
509 B
C#

using Content.Shared.Antag;
using Content.Shared.StatusIcon;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.Zombies;
[RegisterComponent, NetworkedComponent]
public sealed partial class InitialInfectedComponent : Component, IAntagStatusIconComponent
{
[DataField("initialInfectedStatusIcon")]
public ProtoId<StatusIconPrototype> StatusIcon { get; set; } = "InitialInfectedFaction";
[DataField]
public bool IconVisibleToGhost { get; set; } = true;
}