mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 21:34:08 -07:00
(All the code is still there, it's just #ifdef'd out by default) This was SVN commit r6775.
22 lines
409 B
C++
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
|