quakeball/Assets/Scripts/Networking/NetPlayer.cs

14 lines
310 B
C#
Raw Normal View History

using UnityEngine;
2020-08-07 20:24:43 +02:00
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;
}
}
}