コード例 #1
0
ファイル: RoomNode.cs プロジェクト: xTCry/LevelGenerator
 public void AddConnection(RoomNode otherNode, bool changeParent)
 {
     connections.Add(otherNode);
     if (changeParent)
     {
         otherNode.parent = this;
     }
     otherNode.IncreaseDoorCount();
 }