16 lines
519 B
C#
16 lines
519 B
C#
|
|
using Content.Shared.StatusIcon;
|
||
|
|
using Robust.Shared.GameStates;
|
||
|
|
using Robust.Shared.Prototypes;
|
||
|
|
|
||
|
|
namespace Content.Shared.Security.Components;
|
||
|
|
|
||
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||
|
|
public sealed partial class CriminalRecordComponent : Component
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The icon that should be displayed based on the criminal status of the entity.
|
||
|
|
/// </summary>
|
||
|
|
[DataField, AutoNetworkedField]
|
||
|
|
public ProtoId<StatusIconPrototype> StatusIcon = "SecurityIconWanted";
|
||
|
|
}
|