quantum-space-buddies/QSB/AuthoritySync/IAuthWorldObject.cs
2022-08-15 22:53:46 -07:00

16 lines
308 B
C#

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