mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-17 01:13:05 +00:00
10 lines
246 B
C#
10 lines
246 B
C#
using QSB.ItemSync.WorldObjects;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.EchoesOfTheEye.RaftSync.WorldObjects;
|
|
|
|
public class QSBRaftDock : WorldObject<RaftDock>, IQSBDropTarget
|
|
{
|
|
IItemDropTarget IQSBDropTarget.AttachedObject => AttachedObject;
|
|
}
|