Back to project page RollOverSphere---a-simple-libgdx-game.
The source code is released under:
MIT License
If you think the Android project RollOverSphere---a-simple-libgdx-game 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 com.igorcrevar.rolloverchuck; /* ww w. j a v a 2 s . co m*/ public interface IActivityRequestHandler { public static interface IConfirmDialogCallback { void confirmDialogResult(boolean result); } void rate(); void showAd(); void share(); void updateLeaderboardAndAchievements(); void showAchievements(); void showLeaderboard(GameType gameType); boolean getSignedInGPGS(); void loginGPGS(); void setGameManager(GameManager gameManager); void confirmDialog(final String txt, final IConfirmDialogCallback callback); }