mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
10 lines
214 B
C#
10 lines
214 B
C#
using Mirror;
|
|
|
|
namespace QSB.Player
|
|
{
|
|
public abstract class PlayerSyncObject : NetworkBehaviour
|
|
{
|
|
protected uint PlayerId => netId;
|
|
protected PlayerInfo Player => QSBPlayerManager.GetPlayer(PlayerId);
|
|
}
|
|
} |