13 lines
264 B
C
13 lines
264 B
C
|
#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();
|
||
|
};
|
||
|
|
||
|
#endif // STATE_BACKTOSTART_H
|