12 lines
276 B
C#
12 lines
276 B
C#
|
|
using Robust.Shared.Interfaces.GameObjects;
|
||
|
|
|
||
|
|
namespace Content.Server.GameObjects.Components.Items.Storage
|
||
|
|
{
|
||
|
|
public interface IStorageComponent
|
||
|
|
{
|
||
|
|
bool Remove(IEntity entity);
|
||
|
|
bool Insert(IEntity entity);
|
||
|
|
bool CanInsert(IEntity entity);
|
||
|
|
}
|
||
|
|
}
|