mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-14 00:23:39 +00:00
15 lines
357 B
C#
15 lines
357 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using Queue;
|
|
|
|
public class AStarSearch<A, S, T, C> : BestFirstSearch<A, S, T, C>
|
|
where T : IHeuristicSearchNode<A, S, T, C>
|
|
where C : ICost<C>, new()
|
|
{
|
|
public AStarSearch(ISearchStrategy<A, S, T, C> search, IQueue<T> fringe)
|
|
: base(search, fringe)
|
|
{
|
|
}
|
|
}
|
|
}
|