package me.hammerle.supersnuvi.gamelogic.pathfinding; import java.util.Set; /** * main interface for a node for graphs */ public interface INode { Set getEdges(); }