16
Content.Shared/Zombies/InitialInfectedComponent.cs
Normal file
16
Content.Shared/Zombies/InitialInfectedComponent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user