11 lines
210 B
C#
Raw Normal View History

2021-02-24 10:45:25 +00:00
using QSB.WorldSync;
2021-02-25 13:52:49 +00:00
using UnityEngine;
2021-02-24 10:45:25 +00:00
namespace QSB.ItemSync.WorldObjects
2021-02-23 14:42:18 +00:00
{
2021-02-24 10:45:25 +00:00
public interface IQSBOWItem : IWorldObjectTypeSubset
2021-02-23 14:42:18 +00:00
{
2021-02-25 13:52:49 +00:00
void DropItem(Vector3 position, Vector3 normal, Sector sector);
2021-02-23 14:42:18 +00:00
}
}