Line-Following-Robot/lfr_state_interface.h

11 lines
217 B
C
Raw Normal View History

2023-01-16 03:34:25 +01:00
#pragma once
class LFR_StateMachine;
class LFR_IState
{
public:
virtual void enter(LFR_StateMachine* stateMachine) = 0;
virtual void exit(LFR_StateMachine* stateMachine) = 0;
virtual ~LFR_IState() {}
};