mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
16 lines
279 B
C++
16 lines
279 B
C++
#include "pathfinder_null.h"
|
|
#pragma once
|
|
|
|
IPathfinder::IPath PathfinderNull::FindRoute(const glm::vec3 &start, const glm::vec3 &end)
|
|
{
|
|
IPath ret;
|
|
ret.push_back(start);
|
|
ret.push_back(end);
|
|
return ret;
|
|
}
|
|
|
|
glm::vec3 PathfinderNull::GetRandomLocation()
|
|
{
|
|
return glm::vec3();
|
|
}
|