Files
crystall-punk-14/Content.Server/Storage/Components/IStorageComponent.cs

12 lines
253 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Storage.Components
{
public interface IStorageComponent
{
2021-12-05 18:09:01 +01:00
bool Remove(EntityUid entity);
bool Insert(EntityUid entity);
bool CanInsert(EntityUid entity);
}
}