quantum-space-buddies/QSB/AuthoritySync/IAuthWorldObject.cs
2022-08-15 23:04:23 -07:00

19 lines
364 B
C#

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