Files
tbd-station-14/Content.Shared/Zombies/InitialInfectedComponent.cs

13 lines
337 B
C#

using Content.Shared.StatusIcon;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared.Zombies;
[RegisterComponent, NetworkedComponent]
public sealed partial class InitialInfectedComponent : Component
{
[DataField]
public ProtoId<StatusIconPrototype> StatusIcon = "InitialInfectedFaction";
}