2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.Buckle.Components;
|
|
|
|
|
|
using Content.Shared.DragDrop;
|
2020-07-07 00:04:30 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Client.Buckle.Strap
|
2020-07-07 00:04:30 +02:00
|
|
|
|
{
|
|
|
|
|
|
[RegisterComponent]
|
2020-10-14 15:24:07 +02:00
|
|
|
|
[ComponentReference(typeof(SharedStrapComponent))]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class StrapComponent : SharedStrapComponent
|
2020-07-07 00:04:30 +02:00
|
|
|
|
{
|
2021-05-22 21:06:40 -07:00
|
|
|
|
public override bool DragDropOn(DragDropEvent eventArgs)
|
2021-01-11 22:14:01 +11:00
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2020-07-07 00:04:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|