Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner 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.kolomiyets.miner.bt.protocol; /*from w w w.ja v a2s.co m*/ public class CmdGameState extends CmdBase { public final EGameState state; public CmdGameState(EGameState state) { super(ECmdName.GAME_STATE); this.state = state; } }