mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
* init * review * whoopsie (cherry picked from commit 88308356db1616af98a82c0e11d43cb61d15a99e)
22 lines
595 B
C#
22 lines
595 B
C#
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;
|
|
|
|
/// <summary>
|
|
/// WWDP
|
|
/// We still might want to leave marks without fingerprints e.g. gloves.
|
|
/// Or disable fingerprints temporarily
|
|
/// </summary>
|
|
[DataField]
|
|
public bool NotLeavingFingerprints;
|
|
}
|