コード例 #1
0
 public Streamer()
 {
     _youtubeManager = new YouTubeManager();
     _vidMeManager   = new VidMeManager();
     _twitchManager  = new TwitchManager();
     _mixerManager   = new MixerManager();
 }
コード例 #2
0
 public MixerCommands(List <Translation> translations, IGuildManager guildManager, IChannelManager channelManager,
                      IGroupManager groupManager, IConfiguration configuration, IMixerManager mixerManager) : base(translations, guildManager, groupManager, configuration)
 {
     _mixerManager   = mixerManager;
     _groupManager   = groupManager;
     _channelManager = channelManager;
 }
コード例 #3
0
ファイル: Mixer.cs プロジェクト: kyroskoh/CouchBot
 public Mixer(IMixerManager mixerManager, MessagingService messagingService, DiscordShardedClient discord, MixerConstellationService mixerService,
              IOptions <BotSettings> botSettings, FileService fileService) : base(botSettings)
 {
     _mixerManager     = mixerManager;
     _messagingService = messagingService;
     _discord          = discord;
     _mixerService     = mixerService;
     _botSettings      = botSettings.Value;
     _fileService      = fileService;
 }
コード例 #4
0
 public MixerConstellationService(IMixerManager mixerManager, IStatisticsManager statisticsManager, MessagingService messagingService,
                                  DiscordService discordService, IOptions <BotSettings> botSettings, FileService fileService)
 {
     _mixerManager      = mixerManager;
     _statisticsManager = statisticsManager;
     _messagingService  = messagingService;
     _discordService    = discordService;
     _botSettings       = botSettings.Value;
     _fileService       = fileService;
 }
コード例 #5
0
 public CreatorCommands(List <Translation> translations, IGuildManager guildManager, IGroupManager groupManager,
                        IConfiguration configuration, IChannelManager channelManager, ITwitchManager twitchManager, IMixerManager mixerManager,
                        IYouTubeManager youTubeManager) : base(translations, guildManager, groupManager, configuration)
 {
     _groupManager   = groupManager;
     _channelManager = channelManager;
     _twitchManager  = twitchManager;
     _mixerManager   = mixerManager;
     _youTubeManager = youTubeManager;
 }
コード例 #6
0
ファイル: Streamer.cs プロジェクト: kyroskoh/CouchBot
 public Streamer(IYouTubeManager youTubeManager, IMixerManager mixerManager, ITwitchManager twitchManager,
                 IVidMeManager vidMeManager, IOptions <BotSettings> botSettings, FileService fileService, IMobcrushManager mobCrushManager)
 {
     _youtubeManager  = youTubeManager;
     _vidMeManager    = vidMeManager;
     _twitchManager   = twitchManager;
     _mixerManager    = mixerManager;
     _botSettings     = botSettings.Value;
     _fileService     = fileService;
     _mobCrushManager = mobCrushManager;
 }
コード例 #7
0
 public Mixer()
 {
     _mixerManager = new MixerManager();
 }
コード例 #8
0
 public BeamClient()
 {
     _mixerManager      = new MixerManager();
     _statisticsManager = new StatisticsManager();
 }