0ad/source/simulation/TRAStarEngine.h
Ykkrosh 6426777e61 # Disable non-Free pathfinding library
(All the code is still there, it's just #ifdef'd out by default)

This was SVN commit r6775.
2009-03-24 21:40:10 +00:00

22 lines
409 B
C++

#ifndef INCLUDED_TRASTARENGINE
#define INCLUDED_TRASTARENGINE
#ifdef USE_DCDT
#include "AStarEngine.h"
class CTRAStarEngine :
public CAStarEngine
{
public:
CTRAStarEngine(void);
~CTRAStarEngine(void);
SeDcdt dcdtPathfinder;;
bool FindPath( const CVector2D& src, const CVector2D& dest, HEntity entity, SeDcdt& dcdtPathfinder,float radius=0.0f );
};
#endif // USE_DCDT
#endif