* Port forensics from nyanotrasen * port updates * printing * Update Resources/Locale/en-US/forensics/forensics.ftl Co-authored-by: Veritius <veritiusgaming@gmail.com> * Update Content.Server/Forensics/Components/ForensicPadComponent.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicPadSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicScannerSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * partially address reviews * comments * redo the events * handle it * rewrite loc * master fixes Co-authored-by: ike709 <ike709@github.com> Co-authored-by: Veritius <veritiusgaming@gmail.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
29 lines
729 B
C#
29 lines
729 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Forensics
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public sealed class ForensicScannerUserMessage : BoundUserInterfaceMessage
|
|
{
|
|
public readonly List<string> Fingerprints = new();
|
|
public readonly List<string> Fibers = new();
|
|
|
|
public ForensicScannerUserMessage(List<string> fingerprints, List<string> fibers)
|
|
{
|
|
Fingerprints = fingerprints;
|
|
Fibers = fibers;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum ForensicScannerUiKey : byte
|
|
{
|
|
Key
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class ForensicScannerPrintMessage : BoundUserInterfaceMessage
|
|
{
|
|
}
|
|
}
|