mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 03:28:26 +00:00
19 lines
364 B
C#
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; }
|
|
}
|