mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-28 01:27:47 +00:00
6426777e61
(All the code is still there, it's just #ifdef'd out by default) This was SVN commit r6775.
23 lines
409 B
C++
23 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
|