hytale-server/com/hypixel/hytale/server/npc/navigation/AStarNodePool.java

8 lines
148 B
Java

package com.hypixel.hytale.server.npc.navigation;
public interface AStarNodePool {
AStarNode allocate();
void deallocate(AStarNode var1);
}