6
StarHorizon_Public/Content.Shared/Zombies/InitialInfectedComponent.cs
2025-08-05 10:00:54 +03:00

13 lines
338 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<FactionIconPrototype> StatusIcon = "InitialInfectedFaction";
}