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!"); }
public Battleground(BattlegroundBoard myBoard, BattlegroundBoard enemyBoard) { this.MyBoard = myBoard; this.EnemyBoard = enemyBoard; }