예제 #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;
 }