Back to project page minecraft-connect-4.
The source code is released under:
MIT License
If you think the Android project minecraft-connect-4 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* COPYRIGHT (C) 2014 Aleksandr Belkin. All Rights Reserved. */ package sq.squ1rr.mcc4.ai; /*from ww w . j a v a 2s . com*/ /** * Provides a simple interface for AI classes. * @author Aleksandr Belkin */ public interface Ai { /** * Runs the logic, returns the column to put the chip in * @return */ public int run(); }