File size: 277 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 |
/**@class BotFSM
* @brief Bot Finite State Machine (Hierarchical)
**/
class BotFSM extends HFSMBase<BotStateBase, BotEventBase, BotActionBase, BotGuardBase>
{ };
typedef FSMTransition<BotStateBase, BotEventBase, BotActionBase, BotGuardBase> BotTransition; /// shorthand
|