mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2025-01-18 00:31:26 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
|
namespace SpriteCompiler.AI
|
|||
|
{
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
public interface ISuccessorFunction<A, S>
|
|||
|
{
|
|||
|
IDictionary<A, S> Successors(S state);
|
|||
|
}
|
|||
|
}
|