Back to project page Briscola.
The source code is released under:
GNU General Public License
If you think the Android project Briscola 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.gmail.craptik.briscola; //from w ww. j a va 2 s. c o m import java.util.ArrayList; public interface IDatabase { public void logGame(GameData data); public void addNewPlayer(String name); public void updatePlayer(Player player); public void removePlayer(Player player); public void resetDatabase(); public ArrayList<Player> getAllPlayers(); public int getPlayerCount(); public ArrayList<GameData> getAllGames(); public int getGameCount(); }