Back to project page abalone-android.
The source code is released under:
GNU General Public License
If you think the Android project abalone-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.
/** * Copyright (c) 2010-2011 Yaroslav Geryatovich, Alexander Yakushev * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. */// w ww . j a va2s. com package com.bytopia.abalone.mechanics; /** * Interface that describes how Player objects (Controller entities in MVC * pattern) should work. * * @author Bytopia */ public interface Player { /** * Returns the move chosen by player for the given game. * * @param g * game currently played * @return move that player wants to make */ public Move requestMove(Game g); }