mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-11-19 20:31:44 +00:00
13 lines
305 B
C#
13 lines
305 B
C#
|
namespace SpriteCompiler.Problem
|
|||
|
{
|
|||
|
using SpriteCompiler.AI;
|
|||
|
|
|||
|
public sealed class SpriteGeneratorHeuristicFunction : IHeuristicFunction<SpriteGeneratorState, IntegerPathCost>
|
|||
|
{
|
|||
|
public IntegerPathCost Eval(SpriteGeneratorState state)
|
|||
|
{
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|