コード例 #1
0
ファイル: Brain.cs プロジェクト: giaanthunder/Elobuddy
 public static void Init(EventArgs args)
 {
     if (_Player.ChampionName.ToLower() != "zilean")
     {
         return;
     }
     Bootstrap.Init(null);
     Spells.getSpells();
     MenuX.getMenu();
     Orbwalker.OnPreAttack            += BeforeAttack;
     Gapcloser.OnGapcloser            += OnGapCloser;
     Interrupter.OnInterruptableSpell += Interrupt;
     Game.OnTick    += OnTick;
     Drawing.OnDraw += Drawings.OnDraw;
 }