mirror of
https://github.com/EQEmu/Server.git
synced 2026-08-30 17:58:16 +00:00
Working on waypoint code, using boost graph libs
This commit is contained in:
@@ -3,6 +3,9 @@
|
||||
#include "map.h"
|
||||
#include <list>
|
||||
|
||||
class Client;
|
||||
class Seperator;
|
||||
|
||||
class IPathfinder
|
||||
{
|
||||
public:
|
||||
@@ -13,6 +16,7 @@ public:
|
||||
|
||||
virtual IPath FindRoute(const glm::vec3 &start, const glm::vec3 &end) = 0;
|
||||
virtual glm::vec3 GetRandomLocation() = 0;
|
||||
virtual void DebugCommand(Client *c, const Seperator *sep) = 0;
|
||||
|
||||
static IPathfinder *Load(const std::string &zone);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user