Back to project page rpg.
The source code is released under:
Apache License
If you think the Android project rpg 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 org.aschyiel.rpg.graph; // w w w .ja v a 2s. c om import java.util.List; import org.aschyiel.rpg.graph.ChessBoard.Square; import org.aschyiel.rpg.level.UnitType; public interface PathFinder { void findPath( final List<Step> path, final Square src, final Square dst, final UnitType unitType ); }