public Witcher3CommandProcessor(
     IMessageBus messageBus,
     IWitcher3 witcher3,
     IGameCommandFactory commandFactory,
     ITwitchUserStore userStore)
 {
     this.messageBus     = messageBus;
     this.witcher3       = witcher3;
     this.commandFactory = commandFactory;
     this.userStore      = userStore;
 }
Exemplo n.º 2
0
 public Witcher3GameIntegrator(IWitcher3 witcher3)
 {
     this.witcher3      = witcher3;
     this.processThread = new Thread(ProcessUpdate);
     this.Start();
 }