Aka_s_Vayne.Variables.GetLhEnemiesNear C# (CSharp) Метод

GetLhEnemiesNear() публичный статический Метод

public static GetLhEnemiesNear ( this position, float range, float healthpercent ) : List
position this
range float
healthpercent float
Результат List
        public static List<AIHeroClient> GetLhEnemiesNear(this Vector3 position, float range, float healthpercent)
        {
            return EntityManager.Heroes.Enemies.Where(hero => hero.IsValidTarget(range, true, position) && hero.HealthPercent <= healthpercent).ToList();
        }