mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* init * review * whoopsie (cherry picked from commit 88308356db1616af98a82c0e11d43cb61d15a99e)
12 lines
323 B
C#
12 lines
323 B
C#
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;
|
|
|