예제 #1
0
파일: OlafCore.cs 프로젝트: djole353/port2
        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;
        }
예제 #2
0
        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;
        }