示例#1
0
 public CompetitionSetup(ELOService service, GuildService prefix, PatreonIntegration patreonIntegration, ELOMigrator migrator, LegacyIntegration legacy)
 {
     this.Prefix        = prefix;
     PatreonIntegration = patreonIntegration;
     Migrator           = migrator;
     Legacy             = legacy;
     Service            = service;
 }
示例#2
0
 public Developer(IDatabase database, Random random, ELOService service, PatreonIntegration prem, ELOMigrator migrator, LocalManagementService local)
 {
     Database       = database;
     Random         = random;
     Service        = service;
     PremiumService = prem;
     Migrator       = migrator;
     Local          = local;
 }
示例#3
0
 public GameManagement(ELOService service)
 {
     Service = service;
 }
示例#4
0
 public UserManagement(ELOService service)
 {
     Service = service;
 }
示例#5
0
 public ScoreManagement(ELOService service)
 {
     Service = service;
 }
示例#6
0
 public LobbySetup(ELOService service)
 {
     Service = service;
 }
示例#7
0
文件: Info.cs 项目: RealChris91/ELO
 public Info(ELOService service)
 {
     Service = service;
 }
示例#8
0
 public UserCommands(ELOService service, PatreonIntegration prem)
 {
     Service = service;
     Premium = prem;
 }
示例#9
0
 public ManagementSetup(ELOService service, CommandService commandService)
 {
     Service        = service;
     CommandService = commandService;
 }
示例#10
0
 public LobbyManagement(ELOService service, Random random)
 {
     Service = service;
     Random  = random;
 }