This commit is contained in:
aozhiwei 2023-10-11 16:27:42 +08:00
parent 5fe43987bd
commit b5254883e0
2 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,57 @@
#include "precompile.h"
#include "target_agent.h"
TargetAgent::TargetAgent():BaseAgent()
{
}
TargetAgent::~TargetAgent()
{
}
int TargetAgent::GetUniId()
{
}
bool TargetAgent::IsValid()
{
}
bool TargetAgent::IsDead()
{
}
const glm::vec3 TargetAgent::GetPos()
{
}
float TargetAgent::GetHp()
{
}
float TargetAgent::GetMaxHp()
{
}
int TargetAgent::GetHeroId()
{
}
int TargetAgent::GetLevel()
{
}
void TargetAgent::Abandon()
{
}

View File

@ -0,0 +1,24 @@
#pragma once
#include "new_base_agent.h"
class TargetAgent : public BaseAgent
{
public:
TargetAgent();
virtual ~TargetAgent();
BEHAVIAC_DECLARE_AGENTTYPE(TargetAgent, BaseAgent)
int GetUniId();
bool IsValid();
bool IsDead();
const glm::vec3 GetPos();
float GetHp();
float GetMaxHp();
int GetHeroId();
int GetLevel();
void Abandon();
};