2021-02-11 01:13:03 -08:00
|
|
|
using Robust.Shared.GameObjects;
|
2019-05-05 18:52:06 +02:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Storage.Components
|
2019-05-05 18:52:06 +02:00
|
|
|
{
|
|
|
|
|
public interface IStorageComponent
|
|
|
|
|
{
|
|
|
|
|
bool Remove(IEntity entity);
|
|
|
|
|
bool Insert(IEntity entity);
|
|
|
|
|
bool CanInsert(IEntity entity);
|
|
|
|
|
}
|
|
|
|
|
}
|