AkaCore.Features.Orbwalk.AutoCatch.Axe.UnderEnemyTurret C# (CSharp) Method

UnderEnemyTurret() private static method

private static UnderEnemyTurret ( System.Vector3 pos ) : bool
pos System.Vector3
return bool
        private static bool UnderEnemyTurret(Vector3 pos)
        {
            return ObjectManager.Get<Obj_AI_Turret>().Any(t => t.IsEnemy && !t.IsDead && pos.Distance(t) <= 900);
        }