コード例 #1
0
ファイル: GoLayout.cs プロジェクト: macomfan/goGo
 public GoLayout()
 {
     visitor_ = new GoPointVisitor(this);
     ResetPoint();
 }
コード例 #2
0
ファイル: GoPoint.cs プロジェクト: macomfan/goGo
 public GoPoint(GoCoord coord, GoPointVisitor vistior)
 {
     coord_   = coord;
     vistior_ = vistior;
     type_    = GoPointType.EMPTY;
 }