AutoSharp.Utils.Positioning.GetAllyPosList C# (CSharp) Méthode

GetAllyPosList() public static méthode

returns a list of all ally positions
public static GetAllyPosList ( ) : List
Résultat List
        public static List<Vector2> GetAllyPosList()
        {
            var allies = Heroes.AllyHeroes.Where(h => !h.IsMe && !h.IsDead && !h.InFountain()).ToList();
            return allies.Select(ally => ally.ServerPosition.To2D()).ToList();
        }