7 std::cout <<
"Sitting State Entered at Time:" << std::endl
8 <<
"=======================" << std::endl
9 <<
" HIT W to begin standing up" << std::endl
10 <<
"=======================" << std::endl
18 <<
"Sitting State Exited" << std::endl;
void exit(void)
Called once when the state exits. Pure virtual function, must be overwritten by each state...
void during(void)
Called continuously whilst in that state. Pure virtual function, must be overwritten by each state...
void entry(void)
Called once when the state is entered. Pure virtual function, must be overwritten by each state...