mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2025-01-02 14:32:23 +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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|