mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
20 lines
365 B
C++
20 lines
365 B
C++
#ifndef PATHFINDER_H
|
|
#define PATHFINDER_H
|
|
|
|
#include <vector>
|
|
|
|
#include <util.h>
|
|
|
|
namespace battleship{
|
|
class Pathfinder{
|
|
public:
|
|
static Pathfinder* getSingleton();
|
|
std::vector<int> findPath(vb01::u32**, int, int, int);
|
|
void generateWeights(vb01::u32**, int&, vb01::Vector3*[], vb01::Vector2);
|
|
private:
|
|
Pathfinder();
|
|
};
|
|
}
|
|
|
|
#endif
|