mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Rip out remaining machine upgrades * eek (cherry picked from commit a9e89ab37221c4f5eff5a9e1d42e97c6f3e0753b)
20 lines
681 B
C#
20 lines
681 B
C#
using Content.Shared.Construction.Prototypes;
|
|
using Content.Shared.DragDrop;
|
|
using Content.Shared.MedicalScanner;
|
|
using Robust.Shared.Containers;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.Medical.Components
|
|
{
|
|
[RegisterComponent]
|
|
public sealed partial class MedicalScannerComponent : SharedMedicalScannerComponent
|
|
{
|
|
public const string ScannerPort = "MedicalScannerReceiver";
|
|
public ContainerSlot BodyContainer = default!;
|
|
public EntityUid? ConnectedConsole;
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public float CloningFailChanceMultiplier = 1f;
|
|
}
|
|
}
|