D3ltaQ's picture
Upload 2197 files
24b81cb verified
raw
history blame contribute delete
265 Bytes
/**@class BotActionBase
* @brief represents action executed on transition just between OnExit from old state and OnEntry to new state
**/
class BotActionBase
{
/**@fn Action
* @brief executed when transition occurs
**/
void Action (BotEventBase e) { }
};