mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
10 lines
226 B
C#
10 lines
226 B
C#
using QuantumUNET;
|
|
|
|
namespace QSB.Player
|
|
{
|
|
public abstract class PlayerSyncObject : QNetworkBehaviour
|
|
{
|
|
protected uint PlayerId => NetId.Value;
|
|
protected PlayerInfo Player => QSBPlayerManager.GetPlayer(PlayerId);
|
|
}
|
|
} |