Back to project page septica-for-android.
The source code is released under:
MIT License
If you think the Android project septica-for-android 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 fera.costin.alexandru.ai; /*from w ww. java 2 s. c o m*/ import java.io.Serializable; import fera.costin.alexandru.logic.ICard; /** * * @author Alexandru Fera * */ public interface AI extends Serializable { public ICard continuationMove(); public ICard firstMove(); public ICard responseMove(); }