package net.ciklum.icfpc11.controller.ai import net.ciklum.icfpc11.parser.Command /** * blabla * @author vic */ @Typed public interface Strategy { /** Evident */ Command getNextCommand() /** Did the strategy complete. */ boolean isComplete() }