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