Back to project page Checkers.
The source code is released under:
Apache License
If you think the Android project Checkers 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.parse.starter; /* ww w .j ava 2 s.co m*/ import java.util.HashMap; import com.parse.ParseCloud; import com.parse.ParseException; public class MultiPlayer { public int findMate(){ int response = -2; try { response = ParseCloud.callFunction("findMate", new HashMap<String, Integer>()); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } return response; } }