2022-07-20 11:11:38 +08:00
|
|
|
#ifndef STATE_BACKTOSTART_H
|
|
|
|
#define STATE_BACKTOSTART_H
|
|
|
|
|
|
|
|
#include "FSM/State_Trajectory.h"
|
|
|
|
|
|
|
|
class State_BackToStart : public State_Trajectory{
|
|
|
|
public:
|
|
|
|
State_BackToStart(CtrlComponents *ctrlComp);
|
|
|
|
private:
|
|
|
|
void _setTraj();
|
2022-09-13 19:53:15 +08:00
|
|
|
void _setTrajSDK(){}
|
2022-07-20 11:11:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STATE_BACKTOSTART_H
|