mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-12-21 01:29:59 +00:00
11 lines
204 B
C#
11 lines
204 B
C#
namespace SpriteCompiler.AI
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface ISuccessorFunction<A, S>
|
|
{
|
|
IEnumerable<Tuple<A, S>> Successors(S state);
|
|
}
|
|
}
|