botactions.c 265 B

1234567891011
  1. /**@class BotActionBase
  2. * @brief represents action executed on transition just between OnExit from old state and OnEntry to new state
  3. **/
  4. class BotActionBase
  5. {
  6. /**@fn Action
  7. * @brief executed when transition occurs
  8. **/
  9. void Action (BotEventBase e) { }
  10. };