public Knoten[,] getKnotenMap() { Knoten[,] Knotenmap = new Knoten[statsGame.mapMaxSize[0], statsGame.mapMaxSize[1]]; for (int x = 0; x < statsGame.mapMaxSize[0]; x++) { for (int y = 0; y < statsGame.mapMaxSize[1]; y++) { } } return Knotenmap; }
public Knoten(Knoten vorgaenger,int[] point) { this.vorgaenger = vorgaenger; this.point = point; }