19 lines
364 B
C#
Raw Normal View History

2022-08-15 22:53:46 -07:00
using QSB.WorldSync;
namespace QSB.AuthoritySync;
/// <summary>
/// a world object that has an owner
/// </summary>
public interface IAuthWorldObject : IWorldObject
{
2022-08-15 23:04:14 -07:00
/// <summary>
/// 0 = owned by no one
/// </summary>
2022-08-15 22:53:46 -07:00
public uint Owner { get; set; }
/// <summary>
/// can the world object have authority
/// </summary>
public bool CanOwn { get; }
}