Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses 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 acceptableLosses.components; // w ww. ja v a 2 s . c o m import com.artemis.PooledComponent; public class Resume extends PooledComponent { // This will contain parameters on what kind of jobs we want to look for public boolean canDig = true; @Override protected void reset() { canDig = true; } }