Removed unused coded, fix compiler warnings

This commit is contained in:
Jan Mrna
2025-10-04 17:10:40 +02:00
committed by Mrna
parent 326094caf3
commit 75eeac06df
3 changed files with 1 additions and 120 deletions

View File

@@ -13,7 +13,7 @@ PathFinderBase::PathFinderBase(const Map* map) : m_Map(map) {}
// LinearPathFinder also lives here, since it is too small to get it's
// own implementation file
Path LinearPathFinder::CalculatePath(WorldPos start, WorldPos end)
Path LinearPathFinder::CalculatePath(WorldPos, WorldPos end) // first argument (start pos) not used
{
auto path = Path{end};
return path;