Przeglądaj źródła

Grundgeruest. Ein Random Maze wird generiert.

ateubert 7 lat temu
rodzic
commit
894d63958b
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Vorüberlegung_Maze.py

+ 1 - 1
Vorüberlegung_Maze.py

@@ -6,7 +6,7 @@ import random
6 6
 
7 7
 class Maze(object):
8 8
 
9
-    def __init__(self, width=21, height=21, exit_cell=(21, 1)):
9
+    def __init__(self, width=21, height=21, exit_cell=(1, 1)):
10 10
         self.width = width
11 11
         self.height = height
12 12
         self.exit_cell = exit_cell