mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-03 17:53:57 +00:00
16 lines
259 B
C#
16 lines
259 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using UnityEngine.Networking;
|
|||
|
|
|||
|
namespace QSB.QuantumUNET
|
|||
|
{
|
|||
|
public struct QSBPeerInfoPlayer
|
|||
|
{
|
|||
|
public NetworkInstanceId netId;
|
|||
|
|
|||
|
public short playerControllerId;
|
|||
|
}
|
|||
|
}
|