Example #1
0
 /// <summary>TODO</summary>
 public NavigableBoard(HexSize mapSizeHexes, StepCosts entryCosts, StepCosts exitCosts, int minimumCost)
 {
     MapSizeHexes = mapSizeHexes;
     _entryCosts  = entryCosts;
     _exitCosts   = exitCosts;
     _minimumCost = minimumCost;
 }
Example #2
0
 /// <summary>TODO</summary>
 public NavigableBoard(HexSize mapSizeHexes, StepCosts entryCosts, StepCosts exitCosts)
     : this(mapSizeHexes, entryCosts, exitCosts, 1)
 {
 }