18 lines
338 B
C
18 lines
338 B
C
|
#ifndef SAVESTATE_H
|
||
|
#define SAVESTATE_H
|
||
|
|
||
|
#include "FSMState.h"
|
||
|
#include "common/utilities/CSVTool.h"
|
||
|
|
||
|
class State_SaveState : public FSMState{
|
||
|
public:
|
||
|
State_SaveState(CtrlComponents *ctrlComp);
|
||
|
~State_SaveState();
|
||
|
void enter();
|
||
|
void run();
|
||
|
void exit();
|
||
|
int checkChange(int cmd);
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif // SAVESTATE_H
|