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