quakeball/Assets/Scripts/Networking/NetPlayer.cs

14 lines
310 B
C#

using UnityEngine;
using NeonTea.Quakeball.Players;
namespace NeonTea.Quakeball.Networking {
public class NetPlayer {
public ulong Id;
public Player Controlled;
public NetPlayer(ulong id, Player obj = null) {
Id = id;
Controlled = obj;
}
}
}