2024-03-18 22:57:36 +01:00
|
|
|
using Content.Shared.StatusIcon;
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Zombies;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
2024-06-03 12:12:21 -04:00
|
|
|
public sealed partial class InitialInfectedComponent : Component
|
2024-03-18 22:57:36 +01:00
|
|
|
{
|
|
|
|
|
[DataField]
|
2024-08-09 08:14:07 +02:00
|
|
|
public ProtoId<FactionIconPrototype> StatusIcon = "InitialInfectedFaction";
|
2024-03-18 22:57:36 +01:00
|
|
|
}
|