Ejemplo n.º 1
0
 public TravincalBot(IOptions <BotConfiguration> config, IOptions <TravincalConfiguration> travconfig, IExternalMessagingClient externalMessagingClient, IPathingService pathingService,
                     IMuleService muleService, ITownManagementService townManagementService)
     : base(config.Value, travconfig.Value, externalMessagingClient, muleService)
 {
     _pathingService        = pathingService;
     _townManagementService = townManagementService;
 }
Ejemplo n.º 2
0
 public MephistoBot(
     IOptions <BotConfiguration> config,
     IOptions <MephistoConfiguration> mephconfig,
     IExternalMessagingClient externalMessagingClient,
     IPathingService pathingService,
     IMuleService muleService,
     ITownManagementService townManagementService) : base(config.Value, mephconfig.Value, externalMessagingClient, muleService)
 {
     _pathingService        = pathingService;
     _townManagementService = townManagementService;
 }
Ejemplo n.º 3
0
 public CSBot(
     IOptions <BotConfiguration> config,
     IOptions <CsConfiguration> csconfig,
     IExternalMessagingClient externalMessagingClient,
     IPathingService pathingService,
     ITownManagementService townManagementService,
     IAttackService attackService)
 {
     _config = config.Value;
     _externalMessagingClient = externalMessagingClient;
     _pathingService          = pathingService;
     _csconfig = csconfig.Value;
     _townManagementService = townManagementService;
     _attackService         = attackService;
 }