using QSB.WorldSync; namespace QSB.AuthoritySync; /// /// a world object that has an owner /// public interface IAuthWorldObject : IWorldObject { /// /// 0 = owned by no one /// public uint Owner { get; set; } /// /// can the world object have authority /// public bool CanOwn { get; } }