Files
tbd-station-14/Content.Server/Storage/Components/IStorageComponent.cs
2021-12-05 18:09:01 +01:00

12 lines
253 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.Storage.Components
{
public interface IStorageComponent
{
bool Remove(EntityUid entity);
bool Insert(EntityUid entity);
bool CanInsert(EntityUid entity);
}
}