fish-station/Content.Shared/_Sunrise/AssaultOps/AssaultOperativeComponent.cs
2025-01-08 08:51:46 +03:00

13 lines
400 B
C#

using Content.Shared.StatusIcon;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._Sunrise.AssaultOps
{
[RegisterComponent, NetworkedComponent]
public sealed partial class AssaultOperativeComponent : Component
{
[DataField("statusIcon")]
public ProtoId<FactionIconPrototype> StatusIcon { get; set; } = "AssaultOpsFaction";
}
}