server-master/srcs/_plugins/Plugin.CoreImpl/Pathfinding/IPathFinder.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
317 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Helpers.Damages;
namespace Plugin.CoreImpl.Pathfinding
{
public interface IPathFinder
{
Position FindPath(Position start, Position end, float speedIndex, IReadOnlyList<byte> grid, int width, int height, bool useBresenhamFirst = false);
}
}