Files
2026-05-21 16:04:49 +02:00

9 lines
212 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public interface IPathfinder
{
int FindPath(in TilePath path, ref PathQuery query);
PathQueryResult CompletePath(int queryHandle);
}
}