This commit is contained in:
aozhiwei 2022-12-04 14:20:35 +08:00
parent 71fb01e4dd
commit 1bf81776d1
2 changed files with 9 additions and 0 deletions

View File

@ -11,3 +11,8 @@ AndroidAgent::~AndroidAgent()
{
}
behaviac::EBTStatus AndroidAgent::DoIdle(int time)
{
return behaviac::BT_RUNNING;
}

View File

@ -11,6 +11,10 @@ public:
virtual ~AndroidAgent();
BEHAVIAC_DECLARE_AGENTTYPE(AndroidAgent, behaviac::Agent)
public:
behaviac::EBTStatus DoIdle(int time);
};
#endif