public OlafDrawingSpells(OlafMenu olafMenu, OlafSpells olafSpells) { this.olafMenu = olafMenu; this.olafSpells = olafSpells; Drawing.OnDraw += Drawing_OnDraw; }
public Olaf() { olafSpells = new OlafSpells(); olafMenu = new OlafMenu(olafSpells, out olafOrbwalker); olafPotions = new OlafPotions(olafMenu); olafCore = new OlafCore(olafSpells, olafOrbwalker, olafMenu); olafLegacysAxeFinder = new OlafLegacysAxeFinder(olafMenu); olafDrawingSpells = new OlafDrawingSpells(olafMenu, olafSpells); commonForceUltimate = new CommonForceUltimate(olafMenu, olafSpells, olafOrbwalker); commonForceUltimate.ForceUltimate = olafCore.ForceUltimate; }
public OlafMenu(OlafSpells olafSpells, out Orbwalking.Orbwalker orbwalker) { MainMenu = new Menu("【红叶推介】Korean 奥拉夫", "mainmenu", true); this.olafSpells = olafSpells; AddTargetSelector(); AddOrbwalker(out orbwalker); ComboMenu(); HarassMenu(); LaneClearMenu(); LastHitMenu(); MiscMenu(); DrawingMenu(); MainMenu.AddToMainMenu(); GetInitialSpellValues(); }
public OlafMenu(OlafSpells olafSpells, out Orbwalking.Orbwalker orbwalker) { MainMenu = new Menu("Korean Olaf", "mainmenu", true); this.olafSpells = olafSpells; AddTargetSelector(); AddOrbwalker(out orbwalker); ComboMenu(); HarassMenu(); LaneClearMenu(); LastHitMenu(); MiscMenu(); DrawingMenu(); MainMenu.AddToMainMenu(); GetInitialSpellValues(); }
public OlafCore(OlafSpells olafSpells, Orbwalking.Orbwalker olafOrbwalker, OlafMenu olafMenu) { q = olafSpells.Q; w = olafSpells.W; e = olafSpells.E; r = olafSpells.R; player = ObjectManager.Player; this.olafOrbwalker = olafOrbwalker; this.olafMenu = olafMenu; actionQueue = new ActionQueue(); harasQueue = new ActionQueueList(); comboQueue = new ActionQueueList(); laneClearQueue = new ActionQueueList(); autoAttackCheck = new ActionQueueCheckAutoAttack(); olafItems = new OlafOffensiveItems(olafMenu); Game.OnUpdate += Game_OnUpdate; }