* Criminal console update and new icons sprites * Change Hostile and Paroled sprites * Change Hostile sprite * Return the 8x8 scale, redraw new icons * Some changes Redraw eliminated icon and change icons scaling in pda * Update Resources/Textures/Interface/Misc/security_icons.rsi/meta.json Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Content.Client/CartridgeLoader/Cartridges/WantedListUiFragment.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
26 lines
676 B
C#
26 lines
676 B
C#
namespace Content.Shared.Security;
|
|
|
|
/// <summary>
|
|
/// Status used in Criminal Records.
|
|
///
|
|
/// None - the default value
|
|
/// Suspected - the person is suspected of doing something illegal
|
|
/// Wanted - the person is being wanted by security
|
|
/// Hostile - the person has been admitted as hostile
|
|
/// Detained - the person is detained by security
|
|
/// Paroled - the person is on parole
|
|
/// Discharged - the person has been released from prison
|
|
/// Eliminated - the person has been eliminated and should not be healed
|
|
/// </summary>
|
|
public enum SecurityStatus : byte
|
|
{
|
|
None,
|
|
Suspected,
|
|
Wanted,
|
|
Hostile,
|
|
Detained,
|
|
Paroled,
|
|
Discharged,
|
|
Eliminated
|
|
}
|