Ejemplo n.º 1
0
 public AttackAdminister(Player mainPlayer, Player playerAttacked, RoundIndexOfGame roundIndexOfGame)
 {
     this.MainPlayer     = mainPlayer;
     this.PlayerAttacked = playerAttacked;
     MyRoundIndexOfGame  = roundIndexOfGame;
     this.MainPlayerComboAttackGenerator = MainPlayer.GetComboAttackGenerator(PlayerAttacked, MyRoundIndexOfGame);
 }
        public ComboAttackGenerator(Player mainPlayer, Player playerAttacked, RoundIndexOfGame roundIndexOfGame)
        {
            this.MainPlayer     = mainPlayer;
            this.PlayerAttacked = playerAttacked;
            MyRoundIndexOfGame  = roundIndexOfGame;

            MakeAttackList();
        }
Ejemplo n.º 3
0
        public Stage(Player playerOne, Player playerTwo)
        {
            this.PlayerOne          = playerOne;
            this.PlayerTwo          = playerTwo;
            this.MyRoundIndexOfGame = new RoundIndexOfGame();

            AttackAdministerPlayerOne = playerOne.InitializationAttackAdminister(playerTwo, MyRoundIndexOfGame);
            AttackAdministerPlayerTwo = playerTwo.InitializationAttackAdminister(playerOne, MyRoundIndexOfGame);
        }