mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 18:32:45 +00:00
14 lines
300 B
C#
14 lines
300 B
C#
|
using QSB.WorldSync;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace QSB.ItemSync.WorldObjects.Items
|
|||
|
{
|
|||
|
public interface IQSBItem : IWorldObject
|
|||
|
{
|
|||
|
ItemType GetItemType();
|
|||
|
void PickUpItem(Transform itemSocket);
|
|||
|
void DropItem(Vector3 position, Vector3 normal, Sector sector);
|
|||
|
void OnCompleteUnsocket();
|
|||
|
}
|
|||
|
}
|