Back to project page Freebloks-Android.
The source code is released under:
GNU General Public License
If you think the Android project Freebloks-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 de.saschahlusiak.freebloks.game; import de.saschahlusiak.freebloks.model.Stone; public interface ActivityInterface { public boolean commitCurrentStone(Stone stone, int x, int y); public void vibrate(int ms); public void gameFinished(); public void showPlayer(int player); }