namespace SpriteCompiler.AI { using System; using System.Collections.Generic; public interface ISuccessorFunction { IEnumerable> Successors(S state); } }