public Session(IPEndPoint endPoint, ushort clientId, ushort serverId) { EndPoint = endPoint; Network = new NetworkSession(this, clientId, serverId); actionQueue.SetParent(WorldManager.ActionQueue); }
public Session(ConnectionListener connectionListener, IPEndPoint endPoint, ushort clientId, ushort serverId) { EndPoint = endPoint; Network = new NetworkSession(this, connectionListener, clientId, serverId); }
public Session(IPEndPoint endPoint, ushort clientId, ushort serverId) { EndPoint = endPoint; Network = new NetworkSession(this, clientId, serverId); }