org.xguzm.pathfinding.BHeapNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pathfinding Show documentation
Show all versions of pathfinding Show documentation
A generic java path finding library, meant to be used in games
package org.xguzm.pathfinding;
public interface BHeapNode { //extends Comparable {
void setIndex(int index);
int getIndex();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy