mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-13 02:55:59 +00:00
e595dbc88e
This was SVN commit r5393.
19 lines
379 B
C++
19 lines
379 B
C++
#ifndef INCLUDED_TRASTARENGINE
|
|
#define INCLUDED_TRASTARENGINE
|
|
|
|
#include "simulation\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 |