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