mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-06 03:56:57 +00:00
10 lines
156 B
C#
10 lines
156 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using System;
|
|
|
|
public interface IHeuristicFunction<S, C> where C : ICost<C>
|
|
{
|
|
C Eval(S state);
|
|
}
|
|
}
|