mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-24 09:28:21 +00:00
Add pathfinding interfaces, still heavily wip
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#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();
|
||||
};
|
||||
Reference in New Issue
Block a user