Updated Gradle to 4.5

This commit is contained in:
Anuken
2018-02-01 19:31:13 -05:00
parent 83ce2329f4
commit beded95ffa
4 changed files with 9 additions and 9 deletions

View File

@@ -5,5 +5,5 @@ import com.badlogic.gdx.ai.pfa.indexed.IndexedGraph;
/**An interface for an indexed graph that doesn't use allocations for connections.*/
public interface OptimizedGraph<N> extends IndexedGraph<N> {
/**This is used in the same way as getConnections(), but does not use Connection objects.*/
public N[] connectionsOf(N node);
N[] connectionsOf(N node);
}