/// <summary> /// Creates a new graph class instance based on a list of nodes. /// </summary> /// <param name="territories">The list of nodes to populate the newly created Board class with.</param> public Board(TerritoryList territories, ContinentList continents) { this.territories = territories; this.continents = continents; cardBonus = 4; }
/// <summary> /// Default constructor. Creates a new Board class instance. /// </summary> public Board() { territories = new TerritoryList(); continents = new ContinentList(); cardBonus = 4; }