* add tooltips to agentid job icons * forgot to stage this * make StatusIconPrototype abstract * minor visual improvements * cleanup * use currentculture to sort job names * review
13 lines
338 B
C#
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";
|
|
}
|