ArcAnnihilation.Objects.LaneCreeps.GetCreeps C# (CSharp) Метод

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

public static GetCreeps ( ) : IEnumerable
Результат IEnumerable
            public static IEnumerable<Unit> GetCreeps()
            {
                if (!Utils.SleepCheck("LaneCreeps.refresh")) return _laneCreepsList;
                _laneCreepsList =
                    ObjectManager.GetEntities<Unit>()
                        .Where(x => x.ClassID == ClassID.CDOTA_BaseNPC_Creep_Lane && x.IsValid && x.IsAlive)
                        .ToList();
                if (_laneCreepsList.Any())
                    Utils.Sleep(100, "LaneCreeps.refresh");
                return _laneCreepsList;
            }
Objects.LaneCreeps