mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-09-17 21:58:24 +00:00
17 lines
400 B
C#
17 lines
400 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using System;
|
|
|
|
public class HeuristicSearchNode<A, S, T, C> : AbstractSearchNode<A, S, T, C>, ISearchNode<A, S, T, C>
|
|
where T : HeuristicSearchNode<A, S, T, C>
|
|
where C : IPathCost<C>
|
|
{
|
|
public HeuristicSearchNode(T node, S state)
|
|
: base(node, state)
|
|
{
|
|
}
|
|
|
|
public C Heuristic { get; set; }
|
|
}
|
|
}
|