Beispiel #1
0
 private void OnLeagueClientLoggedIn()
 {
     Invoke(new MethodInvoker(FirstTimeSetup));
     Invoke(new MethodInvoker(delegate
     {
         //TODO: Actually get this from the league of legends.exe, won't be dependant on the LCU and potential mismatching?
         String version;
         if (_leagueClient.GetGameVersion(out version))
         {
             lblGameVersion.Text = "Game Version: " + version;
         }
         metroTabControl.TabPages.Insert(1, tabMatchHistory);
     }));
 }