mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-12-30 10:30:11 +00:00
10 lines
187 B
C#
10 lines
187 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
public interface INodeLimiter<T, C>
|
|
where T : ISearchNode<C>
|
|
where C : IPathCost<C>, new()
|
|
{
|
|
bool Cutoff(T node);
|
|
}
|
|
}
|