CameraBuddy.Spectate.Situation.HeroGroupInfo.HeroGroupInfo C# (CSharp) Method

HeroGroupInfo() public method

public HeroGroupInfo ( bool result, HeroType type, Vector3 averagePosistion, List heros ) : System.Collections.Generic
result bool
type HeroType
averagePosistion Vector3
heros List
return System.Collections.Generic
        public HeroGroupInfo(bool result, HeroType type, Vector3 averagePosistion, List<AIHeroClient> heros)
        {
            Result = result;
            Type = type;
            AveragePosistion = averagePosistion;
            Heros = heros;
        }
HeroGroupInfo