File size: 621 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/**@class BotEventBase
* @brief represents event that triggers transition from state to state
**/
class BotEventBase
{
PlayerBase m_Player;
EntityAI m_Entity;
void BotEventBase (PlayerBase p = NULL, EntityAI e = NULL) { m_Entity = e; }
string DumpToString () {}
};
//class BotEventXXX : BotEventBase { void BotEventXXX (PlayerBase p = NULL) { } };
class BotEventStart : BotEventBase { };
class BotEventStop : BotEventBase { };
class BotEventEndOK : BotEventBase { };
class BotEventEndFail : BotEventBase { };
class BotEventEndTimeout : BotEventBase { };
class BotEventOnItemInHandsChanged : BotEventBase { };
|