[optimization] Fixed several compilation warnings

This commit is contained in:
yang
2024-05-26 12:19:13 +08:00
parent 7239c68912
commit 3fb3610ad3
9 changed files with 26 additions and 26 deletions

View File

@@ -17,7 +17,7 @@ class Formation : public AiNamedObject
{
public:
Formation(PlayerbotAI* botAI, std::string const name) : AiNamedObject(botAI, name) { }
virtual ~Formation() = default;
virtual std::string const GetTargetName() { return ""; }
virtual WorldLocation GetLocation() { return NullLocation; }
virtual float GetMaxDistance() { return sPlayerbotAIConfig->followDistance; }