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; /* ww w. j a va 2 s .c o m*/ public class CmdGameTeam extends CmdBase { public final static int VACANT = 0; public final static int OCUPIED = 1; public final static int SELECTED = 2; public int miner = VACANT; public int sapper = VACANT; public CmdGameTeam() { super(ECmdName.GAME_TEAM); } public CmdGameTeam(int miner, int sapper) { super(ECmdName.GAME_TEAM); this.miner = miner; this.sapper = sapper; } }