mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-09 09:39: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;
|
|
}
|
|
}
|