コード例 #1
0
ファイル: Mazes.cs プロジェクト: radishes/MazeGUI
 public ExploredPoint(Point p, ExploredPoint parent, int generation)
 {
     this.p          = p;
     this.parent     = parent;
     this.generation = generation;
 }
コード例 #2
0
ファイル: Mazes.cs プロジェクト: radishes/MazeGUI
 public ExploredPoint(Point p, ExploredPoint parent, int generation)
 {
     this.p = p;
     this.parent = parent;
     this.generation = generation;
 }