iigs-sprite-compiler/SpriteCompiler/Problem/SpriteGeneratorHeuristicFunction.cs
2016-11-30 08:17:05 -06:00

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;
}
}
}