mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2025-01-02 14:32:23 +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);
|
|
}
|
|
}
|