Пример #1
0
 public static void Main()
 {
     if (ObjectManager.Player.ChampionName.Equals("Leblanc"))
     {
         Bootstrap.Initialize();
         var s = new LeBlanc();
     }
 }
Пример #2
0
 private static void Main(string[] args)
 {
     CustomEvents.Game.OnGameLoad += eventArgs =>
     {
         if (ObjectManager.Player.ChampionName.Equals("Leblanc"))
         {
             Bootstrap.Initialize();
             var s = new LeBlanc();
         }
     };
 }