mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-22 21:40:39 +00:00
14 lines
306 B
C#
14 lines
306 B
C#
using QSB.ItemSync.WorldObjects.Items;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.ItemSync.WorldObjects.Sockets
|
|
{
|
|
public interface IQSBOWItemSocket : IWorldObject
|
|
{
|
|
bool AcceptsItem(IQSBOWItem item);
|
|
bool IsSocketOccupied();
|
|
bool PlaceIntoSocket(IQSBOWItem item);
|
|
IQSBOWItem RemoveFromSocket();
|
|
}
|
|
}
|