Compare commits

...

3 Commits
master ... bt

Author SHA1 Message Date
aozhiwei
212b9f9838 merge master 2020-07-17 11:32:37 +08:00
aozhiwei
cf8c5bfc60 1 2020-07-17 11:15:53 +08:00
aozhiwei
9ff5266054 1 2020-07-16 19:41:05 +08:00
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#include "precompile.h"
#include "aiagent.h"
AIAgent::AIAgent()
{
}
AIAgent::~AIAgent()
{
}
behaviac::EBTStatus AIAgent::Run()
{
return behaviac::BT_RUNNING;
}

View File

@ -0,0 +1,12 @@
#pragma once
#include "behaviac/behaviac.h"
class AIAgent : public behaviac::Agent
{
public:
AIAgent();
virtual ~AIAgent();
behaviac::EBTStatus Run();
};