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
|
|
|
{
|
2021-12-03 21:19:53 +11:00
|
|
|
public interface IStorageComponent : IComponent
|
2019-05-05 18:52:06 +02:00
|
|
|
{
|
2021-12-05 18:09:01 +01:00
|
|
|
bool Remove(EntityUid entity);
|
|
|
|
|
bool Insert(EntityUid entity);
|
|
|
|
|
bool CanInsert(EntityUid entity);
|
2019-05-05 18:52:06 +02:00
|
|
|
}
|
|
|
|
|
}
|