mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
17 lines
458 B
C#
17 lines
458 B
C#
using Content.Shared.Disposal.Components;
|
|
using Content.Shared.DragDrop;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Disposal.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedDisposalMailingUnitComponent))]
|
|
public class DisposalMailingUnitComponent : SharedDisposalMailingUnitComponent
|
|
{
|
|
public override bool DragDropOn(DragDropEvent eventArgs)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|