mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
17 lines
260 B
C++
17 lines
260 B
C++
#ifndef PATHFINDER_H
|
|
#define PATHFINDER_H
|
|
|
|
#include <vector>
|
|
|
|
namespace battleship{
|
|
class Pathfinder{
|
|
public:
|
|
static Pathfinder* getSingleton();
|
|
std::vector<int> findPath(int**, int, int, int);
|
|
private:
|
|
Pathfinder();
|
|
};
|
|
}
|
|
|
|
#endif
|