Back to project page rock-paper-scissors.
The source code is released under:
MIT License
If you think the Android project rock-paper-scissors 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 au.com.codeka.rps.game; //from w ww . j a va 2 s.c o m import android.os.Handler; import org.json.JSONException; import org.json.JSONObject; import au.com.codeka.rps.ResultFragment; /** * The state we're in while we're waiting for the other player's choice to come through. */ public class AwaitingResultState extends State { }