mirror of
https://github.com/Fare-spec/cours.git
synced 2025-12-08 03:00:37 +00:00
8 lines
158 B
Python
8 lines
158 B
Python
import maze_creator as mc
|
|
import random
|
|
|
|
|
|
random.seed(random.randint(-2147483647, 2147483647))
|
|
lab = mc.Labyrinth(100,100)
|
|
lab.set_start_end((0,0),(100,100))
|