コード例 #1
0
 public Session(IPEndPoint endPoint, ushort clientId, ushort serverId)
 {
     EndPoint = endPoint;
     Network  = new NetworkSession(this, clientId, serverId);
     actionQueue.SetParent(WorldManager.ActionQueue);
 }
コード例 #2
0
ファイル: Session.cs プロジェクト: jacobtipp/trACE
 public Session(ConnectionListener connectionListener, IPEndPoint endPoint, ushort clientId, ushort serverId)
 {
     EndPoint = endPoint;
     Network  = new NetworkSession(this, connectionListener, clientId, serverId);
 }
コード例 #3
0
 public Session(IPEndPoint endPoint, ushort clientId, ushort serverId)
 {
     EndPoint = endPoint;
     Network  = new NetworkSession(this, clientId, serverId);
 }