using QSB.WorldSync; namespace QSB.OwnershipSync; /// /// a world object that has an owner /// public interface IOwnedWorldObject : IWorldObject { /// /// 0 = owned by no one /// public uint Owner { get; set; } /// /// can the world object be owned by this client /// public bool CanOwn { get; } }