AutoSharp.Utils.Positioning.GetEnemyPaths C# (CSharp) Method

GetEnemyPaths() public static method

returns a clipper paths list of all enemy champion positions
public static GetEnemyPaths ( ) : System.Collections.Generic.List>
return System.Collections.Generic.List>
        public static Paths GetEnemyPaths()
        {
            var enemyPaths = new Paths(GetEnemyPosList().Count);
            for (int i = 0; i < GetEnemyPosList().Count; i++)
            {
                var enemyPos = GetEnemyPosList().ToArray()[i];
                enemyPaths[i].Add(new IntPoint(enemyPos.X, enemyPos.Y));
            }
            return enemyPaths;
        }