Move FingerprintComponent and FingerprintMaskComponent to shared (#35451)
* init * review * whoopsie
This commit is contained in:
13
Content.Shared/Forensics/Components/FingerprintComponent.cs
Normal file
13
Content.Shared/Forensics/Components/FingerprintComponent.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Forensics.Components;
|
||||
|
||||
/// <summary>
|
||||
/// This component is for mobs that leave fingerprints.
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||||
public sealed partial class FingerprintComponent : Component
|
||||
{
|
||||
[DataField, AutoNetworkedField]
|
||||
public string? Fingerprint;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Forensics.Components;
|
||||
|
||||
/// <summary>
|
||||
/// This component stops the entity from leaving fingerprints,
|
||||
/// usually so fibres can be left instead.
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent]
|
||||
public sealed partial class FingerprintMaskComponent : Component;
|
||||
|
||||
Reference in New Issue
Block a user