21 lines
622 B
C#
21 lines
622 B
C#
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;
|
|
}
|
|
}
|
|
}
|