Files
OldThink/Content.Server/Storage/Components/IStorageComponent.cs

12 lines
266 B
C#
Raw Normal View History

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