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; //from w w w. j a va 2 s .co m import com.artemis.PooledComponent; import com.stewsters.util.pathing.threeDimention.shared.FullPath3d; /** * This is an Ai agent's planned path */ public class Path extends PooledComponent { public FullPath3d fullPath3d; public int step; @Override protected void reset() { fullPath3d = null; step = 0; } public Path set(FullPath3d path) { fullPath3d = path; step = 0; return this; } }