2024-03-11 04:12:52 +01:00
|
|
|
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]
|
2024-08-09 08:14:07 +02:00
|
|
|
public ProtoId<SecurityIconPrototype> StatusIcon = "SecurityIconWanted";
|
2024-03-11 04:12:52 +01:00
|
|
|
}
|