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 w w . j av a 2 s.com /** * Base class for game states. */ public class State { public void onEnter() { } public void onMessageReceived(String path, String payload) { } }