This commit is contained in:
aozhiwei 2020-07-17 11:15:53 +08:00
parent 9ff5266054
commit cf8c5bfc60
2 changed files with 6 additions and 0 deletions

View File

@ -10,3 +10,8 @@ AIAgent::~AIAgent()
{
}
behaviac::EBTStatus AIAgent::Run()
{
return behaviac::BT_RUNNING;
}

View File

@ -8,4 +8,5 @@ class AIAgent : public behaviac::Agent
AIAgent();
virtual ~AIAgent();
behaviac::EBTStatus Run();
};