mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-12 03:23:41 +00:00
18 lines
521 B
C#
18 lines
521 B
C#
namespace SpriteCompiler.Problem
|
|
{
|
|
using SpriteCompiler.AI;
|
|
|
|
public sealed class SpriteGeneratorSearchNode : HeuristicSearchNode<CodeSequence, SpriteGeneratorState, SpriteGeneratorSearchNode, IntegerPathCost>
|
|
{
|
|
public SpriteGeneratorSearchNode(SpriteGeneratorSearchNode node, SpriteGeneratorState state)
|
|
: base(node, state)
|
|
{
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return (action == null) ? "NO ACTION" : action.ToString();
|
|
}
|
|
}
|
|
}
|