mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-22 16:48:40 +00:00
c7a84e84be
This was SVN commit r392.
10 lines
205 B
C++
Executable File
10 lines
205 B
C++
Executable File
#include "precompiled.h"
|
|
|
|
#include "PathfindEngine.h"
|
|
#include "PathfindSparse.h"
|
|
|
|
void CPathfindEngine::requestPath( HEntity entity, const CVector2D& destination )
|
|
{
|
|
pathSparse( entity, destination );
|
|
}
|