mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-05 07:16:37 +00:00
Working on waypoint code, using boost graph libs
This commit is contained in:
@@ -1,3 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "pathfinder_interface.h"
|
||||
#include "pathfinder_interface.h"
|
||||
|
||||
class PathfinderNavmesh : public IPathfinder
|
||||
{
|
||||
public:
|
||||
PathfinderNavmesh() { }
|
||||
virtual ~PathfinderNavmesh() { }
|
||||
|
||||
virtual IPath FindRoute(const glm::vec3 &start, const glm::vec3 &end);
|
||||
virtual glm::vec3 GetRandomLocation();
|
||||
virtual void DebugCommand(Client *c, const Seperator *sep);
|
||||
};
|
||||
Reference in New Issue
Block a user