mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 18:25:18 +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; }
|
|
}
|