CameraBuddy.Spectate.Situation.Heros.AreGrouped C# (CSharp) Method

AreGrouped() public static method

public static AreGrouped ( HeroType type, short count, float maxRadius = 2000 ) : HeroGroupInfo
type HeroType
count short
maxRadius float
return HeroGroupInfo
        public static HeroGroupInfo AreGrouped(HeroType type, short count, float maxRadius = 2000)
        {
            Vector3 pos;
            List<AIHeroClient> heros;
            var result = AreGrouped(type, count, out pos, out heros, maxRadius);
            return new HeroGroupInfo(result, type, pos, heros);
        }
        public static bool AreGrouped(HeroType type, short count, out Vector3 posistion, out List<AIHeroClient> outHeros, float maxRadius = 2000)

Same methods

Heros::AreGrouped ( HeroType type, short count, Vector3 &posistion, List &outHeros, float maxRadius = 2000 ) : bool