mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
14 lines
503 B
C#
14 lines
503 B
C#
using QuantumUNET;
|
|
|
|
namespace QSB.Player
|
|
{
|
|
public abstract class PlayerSyncObject : QNetworkBehaviour
|
|
{
|
|
public uint AttachedNetId => NetIdentity?.NetId.Value ?? uint.MaxValue;
|
|
public uint PlayerId => NetIdentity.RootIdentity?.NetId.Value ?? NetIdentity.NetId.Value;
|
|
public PlayerInfo Player => QSBPlayerManager.GetPlayer(PlayerId);
|
|
|
|
protected virtual void Start() => QSBPlayerManager.AddSyncObject(this);
|
|
protected virtual void OnDestroy() => QSBPlayerManager.RemoveSyncObject(this);
|
|
}
|
|
} |