mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
17 lines
440 B
C#
17 lines
440 B
C#
using Content.Shared.DragDrop;
|
|
using Content.Shared.MedicalScanner;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.MedicalScanner
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedMedicalScannerComponent))]
|
|
public sealed class MedicalScannerComponent : SharedMedicalScannerComponent
|
|
{
|
|
public override bool DragDropOn(DragDropEvent eventArgs)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|