示例#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;
 }