You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
206 B
C++

/*#pragma once
#ifndef _UTILSPATHFIND_H_
#define _UTILSPATHFIND_H_
#include <vector>
struct Position;
namespace utils
{
std::vector<Position> BFS(const Position& start, const Position& end);
}
#endif*/