説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

states.h 218B

123456789101112
  1. #ifndef _STATES_H_
  2. #define _STATES_H_
  3. #include "statemachine.h"
  4. void states_init(void);
  5. void states_run(struct StateMachineInput smi);
  6. State *states_get(void);
  7. void states_go_to(State *state);
  8. #endif // _STATES_H_