Exemplo n.º 1
0
 /// <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;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Default constructor.  Creates a new Board class instance.
 /// </summary>
 public Board()
 {
     territories = new TerritoryList();
     continents = new ContinentList();
     cardBonus = 4;
 }