mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 00:19:27 +00:00
9 lines
207 B
C#
9 lines
207 B
C#
using Mirror;
|
|
|
|
namespace QSB.Player;
|
|
|
|
public abstract class PlayerSyncObject : NetworkBehaviour
|
|
{
|
|
protected uint PlayerId => netId;
|
|
protected PlayerInfo Player => QSBPlayerManager.GetPlayer(PlayerId);
|
|
} |