44 lines
641 B
C++
44 lines
641 B
C++
#include "precompile.h"
|
|
|
|
#include "behaviac/behaviac.h"
|
|
#include "btmgr.h"
|
|
|
|
namespace f8
|
|
{
|
|
void BtMgr::Init()
|
|
{
|
|
behaviac::Workspace::GetInstance()->SetFileFormat(behaviac::Workspace::EFF_xml);
|
|
}
|
|
|
|
void BtMgr::UnInit()
|
|
{
|
|
|
|
}
|
|
|
|
void BtMgr::SetFilePath(const std::string& file_path)
|
|
{
|
|
|
|
}
|
|
|
|
bool BtMgr::BtLoad(behaviac::Agent* agent, const char* relative_path, bool force)
|
|
{
|
|
|
|
}
|
|
|
|
void BtMgr::BtSetCurrent(behaviac::Agent* agent, const char* relative_path)
|
|
{
|
|
|
|
}
|
|
|
|
void BtMgr::BtExec(behaviac::Agent* agent)
|
|
{
|
|
|
|
}
|
|
|
|
void BtMgr::BtDestory(behaviac::Agent* agent)
|
|
{
|
|
|
|
}
|
|
|
|
}
|