Cloud save: working implementation, no dialog to select your games yet

This commit is contained in:
Sergii Pylypenko
2014-07-09 20:50:16 +03:00
parent ed57fac3c9
commit 8e2ad620d8
18 changed files with 663 additions and 53 deletions

View File

@@ -39,4 +39,14 @@ class CloudSave
public void onActivityResult(int request, int response, Intent data) {
}
public boolean save(String filename, String saveId, String dialogTitle, String description, String imageFile, long playedTimeMs)
{
return false;
}
public boolean load(String filename, String saveId, String dialogTitle)
{
return false;
}
}