2020-07-07 00:04:30 +02:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using Content.Shared.GameObjects.Components.Strap;
|
2021-01-11 22:14:01 +11:00
|
|
|
|
using Content.Shared.Interfaces.GameObjects.Components;
|
2020-07-07 00:04:30 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.GameObjects.Components.Strap
|
|
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2020-10-14 15:24:07 +02:00
|
|
|
|
[ComponentReference(typeof(SharedStrapComponent))]
|
2020-07-07 00:04:30 +02:00
|
|
|
|
public class StrapComponent : SharedStrapComponent
|
|
|
|
|
|
{
|
2021-01-11 22:14:01 +11:00
|
|
|
|
public override bool DragDropOn(DragDropEventArgs eventArgs)
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2020-07-07 00:04:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|