Esempio n. 1
0
 public DotaGame(DotaGameState state, DotaGameConnection connection)
 {
     this.state         = state;
     this.connection    = connection;
     entityUpdater      = new EntityUpdater(state);
     stringTableUpdater = new StringTableUpdater();
 }
Esempio n. 2
0
 public GameProcessor(Client client, Connection connection)
 {
     this.client             = client;
     this.connection         = connection;
     this.entityUpdater      = new EntityUpdater(client);
     this.stringTableUpdater = new StringTableUpdater();
 }
Esempio n. 3
0
 public SignonProcessor(Client client, Connection connection)
 {
     this.client             = client;
     this.connection         = connection;
     this.entityUpdater      = new EntityUpdater(client);
     this.sendTableFlattener = new SendTableFlattener();
     this.stringTableUpdater = new StringTableUpdater();
 }
Esempio n. 4
0
 /// <summary>
 ///     Initialize the signon handler.
 /// </summary>
 /// <param name="state"></param>
 /// <param name="connection"></param>
 public DotaSignon(DotaGameState state, DotaGameConnection connection, DOTAConnectDetails details)
 {
     this.state         = state;
     this.details       = details;
     this.connection    = connection;
     entityUpdater      = new EntityUpdater(state);
     sendTableFlattener = new SendTableFlattener();
     stringTableUpdater = new StringTableUpdater();
 }