mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
14 lines
361 B
C++
14 lines
361 B
C++
#pragma once
|
|
|
|
#include "pathfinder_interface.h"
|
|
|
|
class PathfinderNull : public IPathfinder
|
|
{
|
|
public:
|
|
PathfinderNull() { }
|
|
virtual ~PathfinderNull() { }
|
|
|
|
virtual IPath FindRoute(const glm::vec3 &start, const glm::vec3 &end, bool &partial, bool &error);
|
|
virtual glm::vec3 GetRandomLocation();
|
|
virtual void DebugCommand(Client *c, const Seperator *sep) { }
|
|
}; |