17 lines
407 B
C#
17 lines
407 B
C#
using Content.Shared.Buckle.Components;
|
|
using Content.Shared.DragDrop;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Buckle.Strap
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedStrapComponent))]
|
|
public class StrapComponent : SharedStrapComponent
|
|
{
|
|
public override bool DragDropOn(DragDropEvent eventArgs)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|