| 18 | { |
| 19 | public: |
| 20 | bool go(Point3D goal) |
| 21 | { |
| 22 | printf("Going to: %f %f %f\n", goal.x, goal.y, goal.z); |
| 23 | return true; // true means success in my legacy code |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | // Similarly to the previous tutorials, we need to implement this parsing method, |