Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
212b9f9838 | ||
![]() |
cf8c5bfc60 | ||
![]() |
9ff5266054 |
17
server/gameserver/aiagent.cc
Normal file
17
server/gameserver/aiagent.cc
Normal file
@ -0,0 +1,17 @@
|
||||
#include "precompile.h"
|
||||
#include "aiagent.h"
|
||||
|
||||
AIAgent::AIAgent()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
AIAgent::~AIAgent()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
behaviac::EBTStatus AIAgent::Run()
|
||||
{
|
||||
return behaviac::BT_RUNNING;
|
||||
}
|
12
server/gameserver/aiagent.h
Normal file
12
server/gameserver/aiagent.h
Normal file
@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include "behaviac/behaviac.h"
|
||||
|
||||
class AIAgent : public behaviac::Agent
|
||||
{
|
||||
public:
|
||||
AIAgent();
|
||||
virtual ~AIAgent();
|
||||
|
||||
behaviac::EBTStatus Run();
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user