mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 05:13:52 +00:00
13 lines
281 B
C++
13 lines
281 B
C++
#pragma once
|
|
|
|
#include "pathfinder_interface.h"
|
|
|
|
class PathfinderWaypoint : public IPathfinder
|
|
{
|
|
public:
|
|
PathfinderWaypoint() { }
|
|
virtual ~PathfinderWaypoint() { }
|
|
|
|
virtual IPath FindRoute(const glm::vec3 &start, const glm::vec3 &end);
|
|
virtual glm::vec3 GetRandomLocation();
|
|
}; |