public Player(string guid, TcpClient tcpClient) {
     Guid = guid;
     TcpClient = tcpClient;
     ClientIp = (IPEndPoint) tcpClient.Socket.RemoteEndPoint;
 }
 public Player(Guid guid, TcpClient tcpClient) : this(guid.ToString(), tcpClient) { }