#ifndef __PATHMOVE_H__ #define __PATHMOVE_H__ #include #include struct PathMove { struct Path { std::vector points; }; PathMove(double speed) : speed(speed) {} double speed; Path path; int current_point_index; float time_passed = 0.0; }; #endif // __PATHMOVE_H__