forked from mirrors/0ad
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 );
|
|
}
|