Files
tbd-station-14/Content.Server/GameObjects/Components/Items/Storage/InEntityStorageComponent.cs
2020-07-03 23:57:19 +02:00

17 lines
396 B
C#

using Content.Shared.GameObjects.EntitySystems;
using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Items.Storage
{
[RegisterComponent]
public class InEntityStorageComponent : Component, IActionBlocker
{
public override string Name => "InEntityStorage";
public bool CanInteract()
{
return false;
}
}
}