Ejemplo n.º 1
0
        //constructor
        public PhaseTwoGame(Hero player, HeroType fighterType)
        {
            Player      = player;
            FighterType = fighterType;

            //getting list of planets in game
            PlanetsInGame = new List <Planet>()
            {
                Planets.GetRentor(),
                    Planets.GetSerenno()
            };

            //getting ally
            Ally = SideCharacters.GetBoKatan(fighterType);
        }