コード例 #1
0
 public FamilyTree(CivilizationManager civilManager, HumanRecord record, uint maxDepth)
 {
     MaxDepth     = maxDepth;
     HumanRecord  = record;
     CivilManager = civilManager;
     BuildFamilyTree();
 }
コード例 #2
0
 public FamilyTree(CivilizationManager civilManager, HumanRecord record)
     : this(civilManager, record, 2)
 {
 }