This commit is contained in:
aozhiwei 2023-10-18 13:23:19 +08:00
parent e2537a6b1a
commit be78c86650
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ bool TargetAgent::IsDead()
return true;
}
const glm::vec3 TargetAgent::GetPos()
glm::vec3 TargetAgent::GetPos()
{
return target_.Get()->GetPos().ToGlmVec3();
}

View File

@ -16,7 +16,7 @@ public:
int GetUniId();
bool IsValid();
bool IsDead();
const glm::vec3 GetPos();
glm::vec3 GetPos();
float GetHp();
float GetMaxHp();
int GetHeroId();