15 lines
257 B
C
15 lines
257 B
C
|
#ifndef PASSIVE_H
|
||
|
#define PASSIVE_H
|
||
|
|
||
|
#include "FSMState.h"
|
||
|
|
||
|
class State_Passive : public FSMState{
|
||
|
public:
|
||
|
State_Passive(CtrlComponents *ctrlComp);
|
||
|
void enter();
|
||
|
void run();
|
||
|
void exit();
|
||
|
int checkChange(int cmd);
|
||
|
};
|
||
|
|
||
|
#endif // PASSIVE_H
|