mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
9 lines
159 B
C#
9 lines
159 B
C#
|
using QSB.WorldSync;
|
|||
|
|
|||
|
namespace QSB.ItemSync.WorldObjects;
|
|||
|
|
|||
|
public interface IQSBDropTarget : IWorldObject
|
|||
|
{
|
|||
|
new IItemDropTarget AttachedObject { get; }
|
|||
|
}
|