9 lines
212 B
C#
9 lines
212 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IPathfinder
|
|
{
|
|
int FindPath(in TilePath path, ref PathQuery query);
|
|
|
|
PathQueryResult CompletePath(int queryHandle);
|
|
}
|
|
} |