1
1
forked from 0ad/0ad
0ad/source/simulation/PathfindEngine.cpp
janwas c7a84e84be added precompiled.h everywhere
This was SVN commit r392.
2004-06-03 18:38:14 +00:00

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 );
}