Exemplo n.º 1
0
 public FamilyTree(CivilizationManager civilManager, HumanRecord record, uint maxDepth)
 {
     MaxDepth     = maxDepth;
     HumanRecord  = record;
     CivilManager = civilManager;
     BuildFamilyTree();
 }
Exemplo n.º 2
0
 public FamilyTree(CivilizationManager civilManager, HumanRecord record)
     : this(civilManager, record, 2)
 {
 }