예제 #1
0
 public PathFindingState(Point point)
 {
     Point = point;
 }
예제 #2
0
 public PathFindingAction(Point point)
 {
     Point = point;
 }
예제 #3
0
 public SudokuAction(Point location, int number)
 {
     Location = location;
     Number = number;
 }