10 lines
160 B
C#
Raw Normal View History

2021-02-24 10:45:25 +00:00
using QSB.WorldSync;
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
{
uint HoldingPlayer { get; set; }
}
}