Back to project page android-tic-tac-toe.
The source code is released under:
MIT License
If you think the Android project android-tic-tac-toe listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.shaon.android.tictactoe.model; //from ww w . jav a 2s .c om import java.util.List; import org.shaon.android.tictactoe.model.State.Player; public interface SearchAlgorithm { public List<ActionState> search(State state); public void setAiPlayer(Player aiPlayer); }