Esempio n. 1
0
        public MainWindow(ILoL lol)
        {
            Instance = this;

            this.LoL            = lol;
            NotificationManager = new NotificationManager(Dispatcher);

            InitializeComponent();

            if (!InDesigner)
            {
                Application.Current.MainWindow = this;
            }
        }
Esempio n. 2
0
        public OverlayWindow(ILoL lol, ILeagueClient client, ITeamGuesser guesser)
        {
            this.LoL     = lol;
            this.Client  = client;
            this.Guesser = guesser;

            InitializeComponent();

            this.DataContext = this;

            LockTimer          = new Timer(1000);
            LockTimer.Elapsed += this.LockTimer_Elapsed;
            LockTimer.Start();

            //client.Init();
        }
 public ChampSelectDetector(ILoL lol, Container <Config> config, Actuator actuator) : base(lol)
 {
     this.ConfigContainer = config;
     this.Actuator        = actuator;
 }
Esempio n. 4
0
 public Detector(ILoL lol)
 {
     this.LoL        = lol;
     this.MainWindow = LCUApp.MainWindow;
 }
Esempio n. 5
0
 public Detector(ILoL lol)
 {
     this.LoL = lol;
 }
 public ReadyCheckDetector(ILoL lol, Container <Config> config) : base(lol)
 {
     this.Config = config;
 }
 public LoginDetector(ILoL lol) : base(lol)
 {
 }