Beispiel #1
0
        static void Main(string[] args)
        {
            BattlegroundBoard myBoard = new BattlegroundBoard();

            myBoard.Cards.Add(Cards.ARGENT_PROTECTOR);
            myBoard.Cards.Add(Cards.ARGENT_PROTECTOR);

            BattlegroundBoard enemyBoard = new BattlegroundBoard();

            enemyBoard.Cards.Add(Cards.KABOOM_BOT);

            Battleground bg = new Battleground(myBoard, enemyBoard);

            bg.run();
            Console.WriteLine("Hello World!");
        }
Beispiel #2
0
 public Battleground(BattlegroundBoard myBoard, BattlegroundBoard enemyBoard)
 {
     this.MyBoard    = myBoard;
     this.EnemyBoard = enemyBoard;
 }