move the comment

This commit is contained in:
JohnCorby 2023-02-08 11:33:41 -08:00
parent b4741c6f1b
commit 8d3a37f039
2 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,10 @@ namespace QSB.QuantumSync.WorldObjects;
public interface IQSBQuantumObject : IWorldObject
{
/// <summary>
/// whether the controlling player is always the host <br/>
/// also means this object is considered always enabled
/// </summary>
bool HostControls { get; }
uint ControllingPlayer { get; set; }
bool IsEnabled { get; }

View File

@ -21,10 +21,6 @@ namespace QSB.QuantumSync.WorldObjects;
internal abstract class QSBQuantumObject<T> : WorldObject<T>, IQSBQuantumObject
where T : QuantumObject
{
/// <summary>
/// whether the controlling player is always the host <br/>
/// also means this object is considered always enabled
/// </summary>
public virtual bool HostControls => false;
public uint ControllingPlayer { get; set; }
public bool IsEnabled { get; private set; }