Esempio n. 1
0
 public CGameSession(FreelancerGame g, IPacketConnection connection)
 {
     Game            = g;
     this.connection = connection;
     rpcServer       = new RemoteServerPlayer(connection, this);
     ResponseHandler = new NetResponseHandler();
 }
 public GameSession(FreelancerGame g, IPacketConnection connection)
 {
     Game            = g;
     this.connection = connection;
 }
Esempio n. 3
0
 public RemoteServerPlayer(IPacketConnection connection, CGameSession session)
 {
     this.connection = connection;
     this.session    = session;
 }