using Content.Shared.DragDrop; using Content.Shared.MedicalScanner; using Robust.Shared.Containers; namespace Content.Server.Medical.Components { [RegisterComponent] public sealed class MedicalScannerComponent : SharedMedicalScannerComponent { public const string ScannerPort = "MedicalScannerReceiver"; public ContainerSlot BodyContainer = default!; public EntityUid? ConnectedConsole; // ECS this out!, when DragDropSystem and InteractionSystem refactored public override bool DragDropOn(DragDropEvent eventArgs) { return true; } } }