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;
|
|
}
|
|
}
|